├── .gitignore ├── Makefile ├── bin └── luakernel.iso ├── bochsrc.txt ├── dep ├── lsqlite3.c ├── lua-5.2.3 │ ├── Makefile │ ├── README │ ├── doc │ │ ├── contents.html │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── musl │ ├── .gitignore │ ├── COPYRIGHT │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── VERSION │ ├── WHATSNEW │ ├── arch │ │ ├── arm │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ ├── src │ │ │ │ ├── __aeabi_atexit.c │ │ │ │ └── find_exidx.c │ │ │ └── syscall_arch.h │ │ ├── i386 │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── microblaze │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── mips │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── ksigaction.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── or1k │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── powerpc │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── sh │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ ├── src │ │ │ │ ├── __fpscr_values.c │ │ │ │ └── atomic.c │ │ │ └── syscall_arch.h │ │ ├── x32 │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ ├── src │ │ │ │ ├── syscall_cp_fixup.c │ │ │ │ └── sysinfo.c │ │ │ └── syscall_arch.h │ │ └── x86_64 │ │ │ ├── atomic.h │ │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── limits.h │ │ │ ├── mman.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── stdarg.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h │ │ │ ├── termios.h │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ ├── configure │ ├── crt │ │ ├── Scrt1.c │ │ ├── arm │ │ │ ├── Scrt1.s │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── crt1.c │ │ ├── crti.c │ │ ├── crtn.c │ │ ├── i386 │ │ │ ├── Scrt1.s │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── microblaze │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── mips │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── or1k │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── powerpc │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── superh │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── x32 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ └── x86_64 │ │ │ ├── Scrt1.s │ │ │ ├── crt1.s │ │ │ ├── crti.s │ │ │ └── crtn.s │ ├── include │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── alltypes.h.in │ │ ├── ar.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── assert.h │ │ ├── byteswap.h │ │ ├── complex.h │ │ ├── cpio.h │ │ ├── crypt.h │ │ ├── ctype.h │ │ ├── dirent.h │ │ ├── dlfcn.h │ │ ├── elf.h │ │ ├── endian.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── features.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── ftw.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── lastlog.h │ │ ├── libgen.h │ │ ├── libintl.h │ │ ├── limits.h │ │ ├── link.h │ │ ├── locale.h │ │ ├── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── mntent.h │ │ ├── monetary.h │ │ ├── mqueue.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_arp.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── ether.h │ │ │ ├── icmp6.h │ │ │ ├── if_ether.h │ │ │ ├── igmp.h │ │ │ ├── in.h │ │ │ ├── in_systm.h │ │ │ ├── ip.h │ │ │ ├── ip6.h │ │ │ ├── ip_icmp.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ │ ├── netpacket │ │ │ └── packet.h │ │ ├── nl_types.h │ │ ├── paths.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pty.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── resolv.h │ │ ├── sched.h │ │ ├── scsi │ │ │ ├── scsi.h │ │ │ ├── scsi_ioctl.h │ │ │ └── sg.h │ │ ├── search.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── shadow.h │ │ ├── signal.h │ │ ├── spawn.h │ │ ├── stdalign.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdio_ext.h │ │ ├── stdlib.h │ │ ├── stdnoreturn.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── stropts.h │ │ ├── sys │ │ │ ├── acct.h │ │ │ ├── auxv.h │ │ │ ├── cachectl.h │ │ │ ├── dir.h │ │ │ ├── epoll.h │ │ │ ├── errno.h │ │ │ ├── eventfd.h │ │ │ ├── fanotify.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── fsuid.h │ │ │ ├── inotify.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kd.h │ │ │ ├── klog.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── param.h │ │ │ ├── personality.h │ │ │ ├── poll.h │ │ │ ├── prctl.h │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── quota.h │ │ │ ├── reboot.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── sendfile.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── socket.h │ │ │ ├── soundcard.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ ├── stropts.h │ │ │ ├── swap.h │ │ │ ├── syscall.h │ │ │ ├── sysinfo.h │ │ │ ├── syslog.h │ │ │ ├── sysmacros.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── timerfd.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── user.h │ │ │ ├── utsname.h │ │ │ ├── vfs.h │ │ │ ├── vt.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── syscall.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── threads.h │ │ ├── time.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── values.h │ │ ├── wait.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ └── wordexp.h │ ├── lib │ │ └── empty │ ├── src │ │ ├── aio │ │ │ ├── aio_cancel.c │ │ │ ├── aio_error.c │ │ │ ├── aio_fsync.c │ │ │ ├── aio_readwrite.c │ │ │ ├── aio_return.c │ │ │ ├── aio_suspend.c │ │ │ └── lio_listio.c │ │ ├── complex │ │ │ ├── __cexp.c │ │ │ ├── __cexpf.c │ │ │ ├── cabs.c │ │ │ ├── cabsf.c │ │ │ ├── cabsl.c │ │ │ ├── cacos.c │ │ │ ├── cacosf.c │ │ │ ├── cacosh.c │ │ │ ├── cacoshf.c │ │ │ ├── cacoshl.c │ │ │ ├── cacosl.c │ │ │ ├── carg.c │ │ │ ├── cargf.c │ │ │ ├── cargl.c │ │ │ ├── casin.c │ │ │ ├── casinf.c │ │ │ ├── casinh.c │ │ │ ├── casinhf.c │ │ │ ├── casinhl.c │ │ │ ├── casinl.c │ │ │ ├── catan.c │ │ │ ├── catanf.c │ │ │ ├── catanh.c │ │ │ ├── catanhf.c │ │ │ ├── catanhl.c │ │ │ ├── catanl.c │ │ │ ├── ccos.c │ │ │ ├── ccosf.c │ │ │ ├── ccosh.c │ │ │ ├── ccoshf.c │ │ │ ├── ccoshl.c │ │ │ ├── ccosl.c │ │ │ ├── cexp.c │ │ │ ├── cexpf.c │ │ │ ├── cexpl.c │ │ │ ├── cimag.c │ │ │ ├── cimagf.c │ │ │ ├── cimagl.c │ │ │ ├── clog.c │ │ │ ├── clogf.c │ │ │ ├── clogl.c │ │ │ ├── conj.c │ │ │ ├── conjf.c │ │ │ ├── conjl.c │ │ │ ├── cpow.c │ │ │ ├── cpowf.c │ │ │ ├── cpowl.c │ │ │ ├── cproj.c │ │ │ ├── cprojf.c │ │ │ ├── cprojl.c │ │ │ ├── creal.c │ │ │ ├── crealf.c │ │ │ ├── creall.c │ │ │ ├── csin.c │ │ │ ├── csinf.c │ │ │ ├── csinh.c │ │ │ ├── csinhf.c │ │ │ ├── csinhl.c │ │ │ ├── csinl.c │ │ │ ├── csqrt.c │ │ │ ├── csqrtf.c │ │ │ ├── csqrtl.c │ │ │ ├── ctan.c │ │ │ ├── ctanf.c │ │ │ ├── ctanh.c │ │ │ ├── ctanhf.c │ │ │ ├── ctanhl.c │ │ │ └── ctanl.c │ │ ├── conf │ │ │ ├── confstr.c │ │ │ ├── fpathconf.c │ │ │ ├── pathconf.c │ │ │ └── sysconf.c │ │ ├── crypt │ │ │ ├── crypt.c │ │ │ ├── crypt_blowfish.c │ │ │ ├── crypt_des.c │ │ │ ├── crypt_md5.c │ │ │ ├── crypt_r.c │ │ │ ├── crypt_sha256.c │ │ │ ├── crypt_sha512.c │ │ │ └── encrypt.c │ │ ├── ctype │ │ │ ├── __ctype_b_loc.c │ │ │ ├── __ctype_get_mb_cur_max.c │ │ │ ├── __ctype_tolower_loc.c │ │ │ ├── __ctype_toupper_loc.c │ │ │ ├── alpha.h │ │ │ ├── isalnum.c │ │ │ ├── isalpha.c │ │ │ ├── isascii.c │ │ │ ├── isblank.c │ │ │ ├── iscntrl.c │ │ │ ├── isdigit.c │ │ │ ├── isgraph.c │ │ │ ├── islower.c │ │ │ ├── isprint.c │ │ │ ├── ispunct.c │ │ │ ├── isspace.c │ │ │ ├── isupper.c │ │ │ ├── iswalnum.c │ │ │ ├── iswalpha.c │ │ │ ├── iswblank.c │ │ │ ├── iswcntrl.c │ │ │ ├── iswctype.c │ │ │ ├── iswdigit.c │ │ │ ├── iswgraph.c │ │ │ ├── iswlower.c │ │ │ ├── iswprint.c │ │ │ ├── iswpunct.c │ │ │ ├── iswspace.c │ │ │ ├── iswupper.c │ │ │ ├── iswxdigit.c │ │ │ ├── isxdigit.c │ │ │ ├── nonspacing.h │ │ │ ├── punct.h │ │ │ ├── toascii.c │ │ │ ├── tolower.c │ │ │ ├── toupper.c │ │ │ ├── towctrans.c │ │ │ ├── wcswidth.c │ │ │ ├── wctrans.c │ │ │ ├── wcwidth.c │ │ │ └── wide.h │ │ ├── dirent │ │ │ ├── __dirent.h │ │ │ ├── __getdents.c │ │ │ ├── alphasort.c │ │ │ ├── closedir.c │ │ │ ├── dirfd.c │ │ │ ├── fdopendir.c │ │ │ ├── opendir.c │ │ │ ├── readdir.c │ │ │ ├── readdir_r.c │ │ │ ├── rewinddir.c │ │ │ ├── scandir.c │ │ │ ├── seekdir.c │ │ │ ├── telldir.c │ │ │ └── versionsort.c │ │ ├── env │ │ │ ├── __environ.c │ │ │ ├── __init_tls.c │ │ │ ├── __libc_start_main.c │ │ │ ├── __reset_tls.c │ │ │ ├── __stack_chk_fail.c │ │ │ ├── clearenv.c │ │ │ ├── getenv.c │ │ │ ├── putenv.c │ │ │ ├── setenv.c │ │ │ └── unsetenv.c │ │ ├── errno │ │ │ ├── __errno_location.c │ │ │ ├── __strerror.h │ │ │ └── strerror.c │ │ ├── exit │ │ │ ├── _Exit.c │ │ │ ├── abort.c │ │ │ ├── assert.c │ │ │ ├── at_quick_exit.c │ │ │ ├── atexit.c │ │ │ ├── exit.c │ │ │ └── quick_exit.c │ │ ├── fcntl │ │ │ ├── creat.c │ │ │ ├── fcntl.c │ │ │ ├── open.c │ │ │ ├── openat.c │ │ │ ├── posix_fadvise.c │ │ │ └── posix_fallocate.c │ │ ├── fenv │ │ │ ├── armebhf │ │ │ │ └── fenv.sub │ │ │ ├── armhf │ │ │ │ ├── fenv.s │ │ │ │ └── fenv.sub │ │ │ ├── fegetexceptflag.c │ │ │ ├── feholdexcept.c │ │ │ ├── fenv.c │ │ │ ├── fesetexceptflag.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── i386 │ │ │ │ └── fenv.s │ │ │ ├── mips-sf │ │ │ │ └── fenv.sub │ │ │ ├── mips │ │ │ │ └── fenv.s │ │ │ ├── mipsel-sf │ │ │ │ └── fenv.sub │ │ │ ├── powerpc │ │ │ │ └── fenv.s │ │ │ ├── sh-nofpu │ │ │ │ └── fenv.sub │ │ │ ├── sh │ │ │ │ └── fenv.s │ │ │ ├── sheb-nofpu │ │ │ │ └── fenv.sub │ │ │ ├── x32 │ │ │ │ └── fenv.s │ │ │ └── x86_64 │ │ │ │ └── fenv.s │ │ ├── internal │ │ │ ├── arm │ │ │ │ └── syscall.s │ │ │ ├── floatscan.c │ │ │ ├── floatscan.h │ │ │ ├── futex.h │ │ │ ├── i386 │ │ │ │ └── syscall.s │ │ │ ├── intscan.c │ │ │ ├── intscan.h │ │ │ ├── ksigaction.h │ │ │ ├── libc.c │ │ │ ├── libc.h │ │ │ ├── libm.h │ │ │ ├── locale_impl.h │ │ │ ├── microblaze │ │ │ │ └── syscall.s │ │ │ ├── mips │ │ │ │ └── syscall.s │ │ │ ├── or1k │ │ │ │ └── syscall.s │ │ │ ├── powerpc │ │ │ │ └── syscall.s │ │ │ ├── procfdname.c │ │ │ ├── pthread_impl.h │ │ │ ├── sh │ │ │ │ └── syscall.s │ │ │ ├── shgetc.c │ │ │ ├── shgetc.h │ │ │ ├── stdio_impl.h │ │ │ ├── syscall.c │ │ │ ├── syscall.h │ │ │ ├── syscall_ret.c │ │ │ ├── vdso.c │ │ │ ├── version.c │ │ │ ├── x32 │ │ │ │ └── syscall.s │ │ │ └── x86_64 │ │ │ │ └── syscall.s │ │ ├── ipc │ │ │ ├── ftok.c │ │ │ ├── ipc.h │ │ │ ├── msgctl.c │ │ │ ├── msgget.c │ │ │ ├── msgrcv.c │ │ │ ├── msgsnd.c │ │ │ ├── semctl.c │ │ │ ├── semget.c │ │ │ ├── semop.c │ │ │ ├── semtimedop.c │ │ │ ├── shmat.c │ │ │ ├── shmctl.c │ │ │ ├── shmdt.c │ │ │ └── shmget.c │ │ ├── ldso │ │ │ ├── arm │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── dl_iterate_phdr.c │ │ │ ├── dladdr.c │ │ │ ├── dlinfo.c │ │ │ ├── dlsym.c │ │ │ ├── dynlink.c │ │ │ ├── i386 │ │ │ │ ├── dlsym.s │ │ │ │ ├── start.s │ │ │ │ └── tlsdesc.s │ │ │ ├── microblaze │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── mips │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── or1k │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── powerpc │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── sh │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ ├── start.c │ │ │ ├── tlsdesc.c │ │ │ ├── x32 │ │ │ │ ├── dlsym.s │ │ │ │ └── start.s │ │ │ └── x86_64 │ │ │ │ ├── dlsym.s │ │ │ │ ├── start.s │ │ │ │ └── tlsdesc.s │ │ ├── legacy │ │ │ ├── cuserid.c │ │ │ ├── daemon.c │ │ │ ├── err.c │ │ │ ├── euidaccess.c │ │ │ ├── ftw.c │ │ │ ├── futimes.c │ │ │ ├── getdtablesize.c │ │ │ ├── getloadavg.c │ │ │ ├── getpagesize.c │ │ │ ├── getpass.c │ │ │ ├── getusershell.c │ │ │ ├── isastream.c │ │ │ ├── lutimes.c │ │ │ ├── ulimit.c │ │ │ ├── utmpx.c │ │ │ └── valloc.c │ │ ├── linux │ │ │ ├── adjtime.c │ │ │ ├── adjtimex.c │ │ │ ├── arch_prctl.c │ │ │ ├── brk.c │ │ │ ├── cache.c │ │ │ ├── cap.c │ │ │ ├── chroot.c │ │ │ ├── clock_adjtime.c │ │ │ ├── clone.c │ │ │ ├── epoll.c │ │ │ ├── eventfd.c │ │ │ ├── fallocate.c │ │ │ ├── fanotify.c │ │ │ ├── flock.c │ │ │ ├── inotify.c │ │ │ ├── ioperm.c │ │ │ ├── iopl.c │ │ │ ├── klogctl.c │ │ │ ├── module.c │ │ │ ├── mount.c │ │ │ ├── personality.c │ │ │ ├── pivot_root.c │ │ │ ├── ppoll.c │ │ │ ├── prctl.c │ │ │ ├── prlimit.c │ │ │ ├── process_vm.c │ │ │ ├── ptrace.c │ │ │ ├── quotactl.c │ │ │ ├── readahead.c │ │ │ ├── reboot.c │ │ │ ├── remap_file_pages.c │ │ │ ├── sbrk.c │ │ │ ├── sendfile.c │ │ │ ├── setfsgid.c │ │ │ ├── setfsuid.c │ │ │ ├── setgroups.c │ │ │ ├── sethostname.c │ │ │ ├── setns.c │ │ │ ├── settimeofday.c │ │ │ ├── signalfd.c │ │ │ ├── splice.c │ │ │ ├── stime.c │ │ │ ├── swap.c │ │ │ ├── sync_file_range.c │ │ │ ├── syncfs.c │ │ │ ├── sysinfo.c │ │ │ ├── tee.c │ │ │ ├── timerfd.c │ │ │ ├── unshare.c │ │ │ ├── utimes.c │ │ │ ├── vhangup.c │ │ │ ├── vmsplice.c │ │ │ ├── wait3.c │ │ │ ├── wait4.c │ │ │ ├── x32 │ │ │ │ └── sysinfo.s │ │ │ └── xattr.c │ │ ├── locale │ │ │ ├── __lctrans.c │ │ │ ├── __mo_lookup.c │ │ │ ├── __setlocalecat.c │ │ │ ├── big5.h │ │ │ ├── bind_textdomain_codeset.c │ │ │ ├── catclose.c │ │ │ ├── catgets.c │ │ │ ├── catopen.c │ │ │ ├── codepages.h │ │ │ ├── dcngettext.c │ │ │ ├── duplocale.c │ │ │ ├── freelocale.c │ │ │ ├── gb18030.h │ │ │ ├── hkscs.h │ │ │ ├── iconv.c │ │ │ ├── jis0208.h │ │ │ ├── ksc.h │ │ │ ├── langinfo.c │ │ │ ├── legacychars.h │ │ │ ├── localeconv.c │ │ │ ├── newlocale.c │ │ │ ├── pleval.c │ │ │ ├── setlocale.c │ │ │ ├── strcoll.c │ │ │ ├── strfmon.c │ │ │ ├── strxfrm.c │ │ │ ├── textdomain.c │ │ │ ├── uselocale.c │ │ │ ├── wcscoll.c │ │ │ └── wcsxfrm.c │ │ ├── malloc │ │ │ ├── DESIGN │ │ │ ├── __brk.c │ │ │ ├── aligned_alloc.c │ │ │ ├── calloc.c │ │ │ ├── lite_malloc.c │ │ │ ├── malloc.c │ │ │ ├── malloc_usable_size.c │ │ │ ├── memalign.c │ │ │ └── posix_memalign.c │ │ ├── math │ │ │ ├── __cos.c │ │ │ ├── __cosdf.c │ │ │ ├── __cosl.c │ │ │ ├── __expo2.c │ │ │ ├── __expo2f.c │ │ │ ├── __fpclassify.c │ │ │ ├── __fpclassifyf.c │ │ │ ├── __fpclassifyl.c │ │ │ ├── __invtrigl.c │ │ │ ├── __invtrigl.h │ │ │ ├── __polevll.c │ │ │ ├── __rem_pio2.c │ │ │ ├── __rem_pio2_large.c │ │ │ ├── __rem_pio2f.c │ │ │ ├── __rem_pio2l.c │ │ │ ├── __signbit.c │ │ │ ├── __signbitf.c │ │ │ ├── __signbitl.c │ │ │ ├── __sin.c │ │ │ ├── __sindf.c │ │ │ ├── __sinl.c │ │ │ ├── __tan.c │ │ │ ├── __tandf.c │ │ │ ├── __tanl.c │ │ │ ├── acos.c │ │ │ ├── acosf.c │ │ │ ├── acosh.c │ │ │ ├── acoshf.c │ │ │ ├── acoshl.c │ │ │ ├── acosl.c │ │ │ ├── armebhf │ │ │ │ ├── fabs.sub │ │ │ │ ├── fabsf.sub │ │ │ │ ├── sqrt.sub │ │ │ │ └── sqrtf.sub │ │ │ ├── armhf │ │ │ │ ├── fabs.s │ │ │ │ ├── fabs.sub │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsf.sub │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrt.sub │ │ │ │ ├── sqrtf.s │ │ │ │ └── sqrtf.sub │ │ │ ├── asin.c │ │ │ ├── asinf.c │ │ │ ├── asinh.c │ │ │ ├── asinhf.c │ │ │ ├── asinhl.c │ │ │ ├── asinl.c │ │ │ ├── atan.c │ │ │ ├── atan2.c │ │ │ ├── atan2f.c │ │ │ ├── atan2l.c │ │ │ ├── atanf.c │ │ │ ├── atanh.c │ │ │ ├── atanhf.c │ │ │ ├── atanhl.c │ │ │ ├── atanl.c │ │ │ ├── cbrt.c │ │ │ ├── cbrtf.c │ │ │ ├── cbrtl.c │ │ │ ├── ceil.c │ │ │ ├── ceilf.c │ │ │ ├── ceill.c │ │ │ ├── copysign.c │ │ │ ├── copysignf.c │ │ │ ├── copysignl.c │ │ │ ├── cos.c │ │ │ ├── cosf.c │ │ │ ├── cosh.c │ │ │ ├── coshf.c │ │ │ ├── coshl.c │ │ │ ├── cosl.c │ │ │ ├── erf.c │ │ │ ├── erff.c │ │ │ ├── erfl.c │ │ │ ├── exp.c │ │ │ ├── exp10.c │ │ │ ├── exp10f.c │ │ │ ├── exp10l.c │ │ │ ├── exp2.c │ │ │ ├── exp2f.c │ │ │ ├── exp2l.c │ │ │ ├── expf.c │ │ │ ├── expl.c │ │ │ ├── expm1.c │ │ │ ├── expm1f.c │ │ │ ├── expm1l.c │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fabsl.c │ │ │ ├── fdim.c │ │ │ ├── fdimf.c │ │ │ ├── fdiml.c │ │ │ ├── finite.c │ │ │ ├── finitef.c │ │ │ ├── floor.c │ │ │ ├── floorf.c │ │ │ ├── floorl.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmal.c │ │ │ ├── fmax.c │ │ │ ├── fmaxf.c │ │ │ ├── fmaxl.c │ │ │ ├── fmin.c │ │ │ ├── fminf.c │ │ │ ├── fminl.c │ │ │ ├── fmod.c │ │ │ ├── fmodf.c │ │ │ ├── fmodl.c │ │ │ ├── frexp.c │ │ │ ├── frexpf.c │ │ │ ├── frexpl.c │ │ │ ├── hypot.c │ │ │ ├── hypotf.c │ │ │ ├── hypotl.c │ │ │ ├── i386 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acos.s │ │ │ │ ├── acosf.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asin.s │ │ │ │ ├── asinf.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan.s │ │ │ │ ├── atan2.s │ │ │ │ ├── atan2f.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanf.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceil.s │ │ │ │ ├── ceilf.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp.s │ │ │ │ ├── exp2.s │ │ │ │ ├── exp2f.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expf.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1.s │ │ │ │ ├── expm1f.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsl.s │ │ │ │ ├── floor.s │ │ │ │ ├── floorf.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fmod.s │ │ │ │ ├── fmodf.s │ │ │ │ ├── fmodl.s │ │ │ │ ├── hypot.s │ │ │ │ ├── hypotf.s │ │ │ │ ├── ldexp.s │ │ │ │ ├── ldexpf.s │ │ │ │ ├── ldexpl.s │ │ │ │ ├── llrint.s │ │ │ │ ├── llrintf.s │ │ │ │ ├── llrintl.s │ │ │ │ ├── log.s │ │ │ │ ├── log10.s │ │ │ │ ├── log10f.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1p.s │ │ │ │ ├── log1pf.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2.s │ │ │ │ ├── log2f.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logf.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.s │ │ │ │ ├── lrintf.s │ │ │ │ ├── lrintl.s │ │ │ │ ├── remainder.s │ │ │ │ ├── remainderf.s │ │ │ │ ├── remainderl.s │ │ │ │ ├── remquo.s │ │ │ │ ├── remquof.s │ │ │ │ ├── remquol.s │ │ │ │ ├── rint.s │ │ │ │ ├── rintf.s │ │ │ │ ├── rintl.s │ │ │ │ ├── scalbln.s │ │ │ │ ├── scalblnf.s │ │ │ │ ├── scalblnl.s │ │ │ │ ├── scalbn.s │ │ │ │ ├── scalbnf.s │ │ │ │ ├── scalbnl.s │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrtf.s │ │ │ │ ├── sqrtl.s │ │ │ │ ├── trunc.s │ │ │ │ ├── truncf.s │ │ │ │ └── truncl.s │ │ │ ├── ilogb.c │ │ │ ├── ilogbf.c │ │ │ ├── ilogbl.c │ │ │ ├── j0.c │ │ │ ├── j0f.c │ │ │ ├── j1.c │ │ │ ├── j1f.c │ │ │ ├── jn.c │ │ │ ├── jnf.c │ │ │ ├── ldexp.c │ │ │ ├── ldexpf.c │ │ │ ├── ldexpl.c │ │ │ ├── lgamma.c │ │ │ ├── lgamma_r.c │ │ │ ├── lgammaf.c │ │ │ ├── lgammaf_r.c │ │ │ ├── lgammal.c │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llrintl.c │ │ │ ├── llround.c │ │ │ ├── llroundf.c │ │ │ ├── llroundl.c │ │ │ ├── log.c │ │ │ ├── log10.c │ │ │ ├── log10f.c │ │ │ ├── log10l.c │ │ │ ├── log1p.c │ │ │ ├── log1pf.c │ │ │ ├── log1pl.c │ │ │ ├── log2.c │ │ │ ├── log2f.c │ │ │ ├── log2l.c │ │ │ ├── logb.c │ │ │ ├── logbf.c │ │ │ ├── logbl.c │ │ │ ├── logf.c │ │ │ ├── logl.c │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lrintl.c │ │ │ ├── lround.c │ │ │ ├── lroundf.c │ │ │ ├── lroundl.c │ │ │ ├── modf.c │ │ │ ├── modff.c │ │ │ ├── modfl.c │ │ │ ├── nan.c │ │ │ ├── nanf.c │ │ │ ├── nanl.c │ │ │ ├── nearbyint.c │ │ │ ├── nearbyintf.c │ │ │ ├── nearbyintl.c │ │ │ ├── nextafter.c │ │ │ ├── nextafterf.c │ │ │ ├── nextafterl.c │ │ │ ├── nexttoward.c │ │ │ ├── nexttowardf.c │ │ │ ├── nexttowardl.c │ │ │ ├── pow.c │ │ │ ├── powf.c │ │ │ ├── powl.c │ │ │ ├── remainder.c │ │ │ ├── remainderf.c │ │ │ ├── remainderl.c │ │ │ ├── remquo.c │ │ │ ├── remquof.c │ │ │ ├── remquol.c │ │ │ ├── rint.c │ │ │ ├── rintf.c │ │ │ ├── rintl.c │ │ │ ├── round.c │ │ │ ├── roundf.c │ │ │ ├── roundl.c │ │ │ ├── scalb.c │ │ │ ├── scalbf.c │ │ │ ├── scalbln.c │ │ │ ├── scalblnf.c │ │ │ ├── scalblnl.c │ │ │ ├── scalbn.c │ │ │ ├── scalbnf.c │ │ │ ├── scalbnl.c │ │ │ ├── signgam.c │ │ │ ├── significand.c │ │ │ ├── significandf.c │ │ │ ├── sin.c │ │ │ ├── sincos.c │ │ │ ├── sincosf.c │ │ │ ├── sincosl.c │ │ │ ├── sinf.c │ │ │ ├── sinh.c │ │ │ ├── sinhf.c │ │ │ ├── sinhl.c │ │ │ ├── sinl.c │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── sqrtl.c │ │ │ ├── tan.c │ │ │ ├── tanf.c │ │ │ ├── tanh.c │ │ │ ├── tanhf.c │ │ │ ├── tanhl.c │ │ │ ├── tanl.c │ │ │ ├── tgamma.c │ │ │ ├── tgammaf.c │ │ │ ├── tgammal.c │ │ │ ├── trunc.c │ │ │ ├── truncf.c │ │ │ ├── truncl.c │ │ │ ├── x32 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsl.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fmodl.s │ │ │ │ ├── llrint.s │ │ │ │ ├── llrintf.s │ │ │ │ ├── llrintl.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.s │ │ │ │ ├── lrintf.s │ │ │ │ ├── lrintl.s │ │ │ │ ├── remainderl.s │ │ │ │ ├── rintl.s │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrtf.s │ │ │ │ ├── sqrtl.s │ │ │ │ └── truncl.s │ │ │ └── x86_64 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsl.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fmodl.s │ │ │ │ ├── llrint.s │ │ │ │ ├── llrintf.s │ │ │ │ ├── llrintl.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.s │ │ │ │ ├── lrintf.s │ │ │ │ ├── lrintl.s │ │ │ │ ├── remainderl.s │ │ │ │ ├── rintl.s │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrtf.s │ │ │ │ ├── sqrtl.s │ │ │ │ └── truncl.s │ │ ├── misc │ │ │ ├── a64l.c │ │ │ ├── basename.c │ │ │ ├── dirname.c │ │ │ ├── ffs.c │ │ │ ├── ffsl.c │ │ │ ├── ffsll.c │ │ │ ├── fmtmsg.c │ │ │ ├── forkpty.c │ │ │ ├── get_current_dir_name.c │ │ │ ├── getauxval.c │ │ │ ├── getdomainname.c │ │ │ ├── getgrouplist.c │ │ │ ├── gethostid.c │ │ │ ├── getopt.c │ │ │ ├── getopt_long.c │ │ │ ├── getpriority.c │ │ │ ├── getresgid.c │ │ │ ├── getresuid.c │ │ │ ├── getrlimit.c │ │ │ ├── getrusage.c │ │ │ ├── getsubopt.c │ │ │ ├── initgroups.c │ │ │ ├── ioctl.c │ │ │ ├── issetugid.c │ │ │ ├── lockf.c │ │ │ ├── mntent.c │ │ │ ├── nftw.c │ │ │ ├── openpty.c │ │ │ ├── ptsname.c │ │ │ ├── pty.c │ │ │ ├── realpath.c │ │ │ ├── setdomainname.c │ │ │ ├── setpriority.c │ │ │ ├── setrlimit.c │ │ │ ├── syscall.c │ │ │ ├── syslog.c │ │ │ ├── uname.c │ │ │ └── wordexp.c │ │ ├── mman │ │ │ ├── madvise.c │ │ │ ├── mincore.c │ │ │ ├── mlock.c │ │ │ ├── mlockall.c │ │ │ ├── mmap.c │ │ │ ├── mprotect.c │ │ │ ├── mremap.c │ │ │ ├── msync.c │ │ │ ├── munlock.c │ │ │ ├── munlockall.c │ │ │ ├── munmap.c │ │ │ ├── posix_madvise.c │ │ │ └── shm_open.c │ │ ├── mq │ │ │ ├── mq_close.c │ │ │ ├── mq_getattr.c │ │ │ ├── mq_notify.c │ │ │ ├── mq_open.c │ │ │ ├── mq_receive.c │ │ │ ├── mq_send.c │ │ │ ├── mq_setattr.c │ │ │ ├── mq_timedreceive.c │ │ │ ├── mq_timedsend.c │ │ │ └── mq_unlink.c │ │ ├── multibyte │ │ │ ├── btowc.c │ │ │ ├── internal.c │ │ │ ├── internal.h │ │ │ ├── mblen.c │ │ │ ├── mbrlen.c │ │ │ ├── mbrtowc.c │ │ │ ├── mbsinit.c │ │ │ ├── mbsnrtowcs.c │ │ │ ├── mbsrtowcs.c │ │ │ ├── mbstowcs.c │ │ │ ├── mbtowc.c │ │ │ ├── wcrtomb.c │ │ │ ├── wcsnrtombs.c │ │ │ ├── wcsrtombs.c │ │ │ ├── wcstombs.c │ │ │ ├── wctob.c │ │ │ └── wctomb.c │ │ ├── network │ │ │ ├── accept.c │ │ │ ├── accept4.c │ │ │ ├── bind.c │ │ │ ├── connect.c │ │ │ ├── dn_comp.c │ │ │ ├── dn_expand.c │ │ │ ├── dn_skipname.c │ │ │ ├── dns_parse.c │ │ │ ├── ent.c │ │ │ ├── ether.c │ │ │ ├── freeaddrinfo.c │ │ │ ├── gai_strerror.c │ │ │ ├── getaddrinfo.c │ │ │ ├── gethostbyaddr.c │ │ │ ├── gethostbyaddr_r.c │ │ │ ├── gethostbyname.c │ │ │ ├── gethostbyname2.c │ │ │ ├── gethostbyname2_r.c │ │ │ ├── gethostbyname_r.c │ │ │ ├── getifaddrs.c │ │ │ ├── getnameinfo.c │ │ │ ├── getpeername.c │ │ │ ├── getservbyname.c │ │ │ ├── getservbyname_r.c │ │ │ ├── getservbyport.c │ │ │ ├── getservbyport_r.c │ │ │ ├── getsockname.c │ │ │ ├── getsockopt.c │ │ │ ├── h_errno.c │ │ │ ├── herror.c │ │ │ ├── hstrerror.c │ │ │ ├── htonl.c │ │ │ ├── htons.c │ │ │ ├── if_freenameindex.c │ │ │ ├── if_indextoname.c │ │ │ ├── if_nameindex.c │ │ │ ├── if_nametoindex.c │ │ │ ├── in6addr_any.c │ │ │ ├── in6addr_loopback.c │ │ │ ├── inet_addr.c │ │ │ ├── inet_aton.c │ │ │ ├── inet_legacy.c │ │ │ ├── inet_ntoa.c │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── listen.c │ │ │ ├── lookup.h │ │ │ ├── lookup_ipliteral.c │ │ │ ├── lookup_name.c │ │ │ ├── lookup_serv.c │ │ │ ├── netlink.c │ │ │ ├── netlink.h │ │ │ ├── netname.c │ │ │ ├── ntohl.c │ │ │ ├── ntohs.c │ │ │ ├── proto.c │ │ │ ├── recv.c │ │ │ ├── recvfrom.c │ │ │ ├── recvmmsg.c │ │ │ ├── recvmsg.c │ │ │ ├── res_init.c │ │ │ ├── res_mkquery.c │ │ │ ├── res_msend.c │ │ │ ├── res_query.c │ │ │ ├── res_querydomain.c │ │ │ ├── res_send.c │ │ │ ├── res_state.c │ │ │ ├── send.c │ │ │ ├── sendmmsg.c │ │ │ ├── sendmsg.c │ │ │ ├── sendto.c │ │ │ ├── serv.c │ │ │ ├── setsockopt.c │ │ │ ├── shutdown.c │ │ │ ├── sockatmark.c │ │ │ ├── socket.c │ │ │ └── socketpair.c │ │ ├── passwd │ │ │ ├── fgetgrent.c │ │ │ ├── fgetpwent.c │ │ │ ├── fgetspent.c │ │ │ ├── getgr_r.c │ │ │ ├── getgrent.c │ │ │ ├── getgrent_a.c │ │ │ ├── getpw_r.c │ │ │ ├── getpwent.c │ │ │ ├── getpwent_a.c │ │ │ ├── getspent.c │ │ │ ├── getspnam.c │ │ │ ├── getspnam_r.c │ │ │ ├── lckpwdf.c │ │ │ ├── putgrent.c │ │ │ ├── putpwent.c │ │ │ ├── putspent.c │ │ │ └── pwf.h │ │ ├── prng │ │ │ ├── __rand48_step.c │ │ │ ├── __seed48.c │ │ │ ├── drand48.c │ │ │ ├── lcong48.c │ │ │ ├── lrand48.c │ │ │ ├── mrand48.c │ │ │ ├── rand.c │ │ │ ├── rand_r.c │ │ │ ├── random.c │ │ │ ├── seed48.c │ │ │ └── srand48.c │ │ ├── process │ │ │ ├── execl.c │ │ │ ├── execle.c │ │ │ ├── execlp.c │ │ │ ├── execv.c │ │ │ ├── execve.c │ │ │ ├── execvp.c │ │ │ ├── fdop.h │ │ │ ├── fexecve.c │ │ │ ├── fork.c │ │ │ ├── i386 │ │ │ │ └── vfork.s │ │ │ ├── posix_spawn.c │ │ │ ├── posix_spawn_file_actions_addclose.c │ │ │ ├── posix_spawn_file_actions_adddup2.c │ │ │ ├── posix_spawn_file_actions_addopen.c │ │ │ ├── posix_spawn_file_actions_destroy.c │ │ │ ├── posix_spawn_file_actions_init.c │ │ │ ├── posix_spawnattr_destroy.c │ │ │ ├── posix_spawnattr_getflags.c │ │ │ ├── posix_spawnattr_getpgroup.c │ │ │ ├── posix_spawnattr_getsigdefault.c │ │ │ ├── posix_spawnattr_getsigmask.c │ │ │ ├── posix_spawnattr_init.c │ │ │ ├── posix_spawnattr_sched.c │ │ │ ├── posix_spawnattr_setflags.c │ │ │ ├── posix_spawnattr_setpgroup.c │ │ │ ├── posix_spawnattr_setsigdefault.c │ │ │ ├── posix_spawnattr_setsigmask.c │ │ │ ├── posix_spawnp.c │ │ │ ├── system.c │ │ │ ├── vfork.c │ │ │ ├── wait.c │ │ │ ├── waitid.c │ │ │ ├── waitpid.c │ │ │ ├── x32 │ │ │ │ └── vfork.s │ │ │ └── x86_64 │ │ │ │ └── vfork.s │ │ ├── regex │ │ │ ├── fnmatch.c │ │ │ ├── glob.c │ │ │ ├── regcomp.c │ │ │ ├── regerror.c │ │ │ ├── regexec.c │ │ │ ├── tre-mem.c │ │ │ └── tre.h │ │ ├── sched │ │ │ ├── affinity.c │ │ │ ├── sched_cpucount.c │ │ │ ├── sched_get_priority_max.c │ │ │ ├── sched_getparam.c │ │ │ ├── sched_getscheduler.c │ │ │ ├── sched_rr_get_interval.c │ │ │ ├── sched_setparam.c │ │ │ ├── sched_setscheduler.c │ │ │ └── sched_yield.c │ │ ├── search │ │ │ ├── hsearch.c │ │ │ ├── insque.c │ │ │ ├── lsearch.c │ │ │ ├── tdestroy.c │ │ │ └── tsearch_avl.c │ │ ├── select │ │ │ ├── poll.c │ │ │ ├── pselect.c │ │ │ └── select.c │ │ ├── setjmp │ │ │ ├── arm │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── i386 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── longjmp.c │ │ │ ├── microblaze │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── mips-sf │ │ │ │ ├── longjmp.s │ │ │ │ ├── longjmp.sub │ │ │ │ ├── setjmp.s │ │ │ │ └── setjmp.sub │ │ │ ├── mips │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── mipsel-sf │ │ │ │ ├── longjmp.sub │ │ │ │ └── setjmp.sub │ │ │ ├── or1k │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── powerpc │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── setjmp.c │ │ │ ├── sh-nofpu │ │ │ │ ├── longjmp.s │ │ │ │ ├── longjmp.sub │ │ │ │ ├── setjmp.s │ │ │ │ └── setjmp.sub │ │ │ ├── sh │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── sheb-nofpu │ │ │ │ ├── longjmp.sub │ │ │ │ └── setjmp.sub │ │ │ ├── x32 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ └── x86_64 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ ├── signal │ │ │ ├── arm │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── block.c │ │ │ ├── getitimer.c │ │ │ ├── i386 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── kill.c │ │ │ ├── killpg.c │ │ │ ├── microblaze │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── mips │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── or1k │ │ │ │ └── sigsetjmp.s │ │ │ ├── powerpc │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── psiginfo.c │ │ │ ├── psignal.c │ │ │ ├── raise.c │ │ │ ├── restore.c │ │ │ ├── setitimer.c │ │ │ ├── sh │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── sigaction.c │ │ │ ├── sigaddset.c │ │ │ ├── sigaltstack.c │ │ │ ├── sigandset.c │ │ │ ├── sigdelset.c │ │ │ ├── sigemptyset.c │ │ │ ├── sigfillset.c │ │ │ ├── sighold.c │ │ │ ├── sigignore.c │ │ │ ├── siginterrupt.c │ │ │ ├── sigisemptyset.c │ │ │ ├── sigismember.c │ │ │ ├── siglongjmp.c │ │ │ ├── signal.c │ │ │ ├── sigorset.c │ │ │ ├── sigpause.c │ │ │ ├── sigpending.c │ │ │ ├── sigprocmask.c │ │ │ ├── sigqueue.c │ │ │ ├── sigrelse.c │ │ │ ├── sigrtmax.c │ │ │ ├── sigrtmin.c │ │ │ ├── sigset.c │ │ │ ├── sigsetjmp.c │ │ │ ├── sigsuspend.c │ │ │ ├── sigtimedwait.c │ │ │ ├── sigwait.c │ │ │ ├── sigwaitinfo.c │ │ │ ├── x32 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ └── x86_64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ ├── stat │ │ │ ├── __xstat.c │ │ │ ├── chmod.c │ │ │ ├── fchmod.c │ │ │ ├── fchmodat.c │ │ │ ├── fstat.c │ │ │ ├── fstatat.c │ │ │ ├── futimens.c │ │ │ ├── futimesat.c │ │ │ ├── lchmod.c │ │ │ ├── lstat.c │ │ │ ├── mkdir.c │ │ │ ├── mkdirat.c │ │ │ ├── mkfifo.c │ │ │ ├── mkfifoat.c │ │ │ ├── mknod.c │ │ │ ├── mknodat.c │ │ │ ├── stat.c │ │ │ ├── statvfs.c │ │ │ ├── umask.c │ │ │ └── utimensat.c │ │ ├── stdio │ │ │ ├── __fclose_ca.c │ │ │ ├── __fdopen.c │ │ │ ├── __fmodeflags.c │ │ │ ├── __fopen_rb_ca.c │ │ │ ├── __lockfile.c │ │ │ ├── __overflow.c │ │ │ ├── __stdio_close.c │ │ │ ├── __stdio_exit.c │ │ │ ├── __stdio_read.c │ │ │ ├── __stdio_seek.c │ │ │ ├── __stdio_write.c │ │ │ ├── __stdout_write.c │ │ │ ├── __string_read.c │ │ │ ├── __toread.c │ │ │ ├── __towrite.c │ │ │ ├── __uflow.c │ │ │ ├── asprintf.c │ │ │ ├── clearerr.c │ │ │ ├── dprintf.c │ │ │ ├── ext.c │ │ │ ├── ext2.c │ │ │ ├── fclose.c │ │ │ ├── feof.c │ │ │ ├── ferror.c │ │ │ ├── fflush.c │ │ │ ├── fgetc.c │ │ │ ├── fgetln.c │ │ │ ├── fgetpos.c │ │ │ ├── fgets.c │ │ │ ├── fgetwc.c │ │ │ ├── fgetws.c │ │ │ ├── fileno.c │ │ │ ├── flockfile.c │ │ │ ├── fmemopen.c │ │ │ ├── fopen.c │ │ │ ├── fprintf.c │ │ │ ├── fputc.c │ │ │ ├── fputs.c │ │ │ ├── fputwc.c │ │ │ ├── fputws.c │ │ │ ├── fread.c │ │ │ ├── freopen.c │ │ │ ├── fscanf.c │ │ │ ├── fseek.c │ │ │ ├── fsetpos.c │ │ │ ├── ftell.c │ │ │ ├── ftrylockfile.c │ │ │ ├── funlockfile.c │ │ │ ├── fwide.c │ │ │ ├── fwprintf.c │ │ │ ├── fwrite.c │ │ │ ├── fwscanf.c │ │ │ ├── getc.c │ │ │ ├── getc_unlocked.c │ │ │ ├── getchar.c │ │ │ ├── getchar_unlocked.c │ │ │ ├── getdelim.c │ │ │ ├── getline.c │ │ │ ├── gets.c │ │ │ ├── getw.c │ │ │ ├── getwc.c │ │ │ ├── getwchar.c │ │ │ ├── open_memstream.c │ │ │ ├── open_wmemstream.c │ │ │ ├── pclose.c │ │ │ ├── perror.c │ │ │ ├── popen.c │ │ │ ├── printf.c │ │ │ ├── putc.c │ │ │ ├── putc_unlocked.c │ │ │ ├── putchar.c │ │ │ ├── putchar_unlocked.c │ │ │ ├── puts.c │ │ │ ├── putw.c │ │ │ ├── putwc.c │ │ │ ├── putwchar.c │ │ │ ├── remove.c │ │ │ ├── rename.c │ │ │ ├── rewind.c │ │ │ ├── scanf.c │ │ │ ├── setbuf.c │ │ │ ├── setbuffer.c │ │ │ ├── setlinebuf.c │ │ │ ├── setvbuf.c │ │ │ ├── snprintf.c │ │ │ ├── sprintf.c │ │ │ ├── sscanf.c │ │ │ ├── stderr.c │ │ │ ├── stdin.c │ │ │ ├── stdout.c │ │ │ ├── swprintf.c │ │ │ ├── swscanf.c │ │ │ ├── tempnam.c │ │ │ ├── tmpfile.c │ │ │ ├── tmpnam.c │ │ │ ├── ungetc.c │ │ │ ├── ungetwc.c │ │ │ ├── vasprintf.c │ │ │ ├── vdprintf.c │ │ │ ├── vfprintf.c │ │ │ ├── vfscanf.c │ │ │ ├── vfwprintf.c │ │ │ ├── vfwscanf.c │ │ │ ├── vprintf.c │ │ │ ├── vscanf.c │ │ │ ├── vsnprintf.c │ │ │ ├── vsprintf.c │ │ │ ├── vsscanf.c │ │ │ ├── vswprintf.c │ │ │ ├── vswscanf.c │ │ │ ├── vwprintf.c │ │ │ ├── vwscanf.c │ │ │ ├── wprintf.c │ │ │ └── wscanf.c │ │ ├── stdlib │ │ │ ├── abs.c │ │ │ ├── atof.c │ │ │ ├── atoi.c │ │ │ ├── atol.c │ │ │ ├── atoll.c │ │ │ ├── bsearch.c │ │ │ ├── div.c │ │ │ ├── ecvt.c │ │ │ ├── fcvt.c │ │ │ ├── gcvt.c │ │ │ ├── imaxabs.c │ │ │ ├── imaxdiv.c │ │ │ ├── labs.c │ │ │ ├── ldiv.c │ │ │ ├── llabs.c │ │ │ ├── lldiv.c │ │ │ ├── qsort.c │ │ │ ├── strtod.c │ │ │ ├── strtol.c │ │ │ ├── wcstod.c │ │ │ └── wcstol.c │ │ ├── string │ │ │ ├── armel │ │ │ │ ├── memcpy.s │ │ │ │ └── memcpy.sub │ │ │ ├── armhf │ │ │ │ └── memcpy.sub │ │ │ ├── bcmp.c │ │ │ ├── bcopy.c │ │ │ ├── bzero.c │ │ │ ├── i386 │ │ │ │ ├── memcpy.s │ │ │ │ ├── memmove.s │ │ │ │ └── memset.s │ │ │ ├── index.c │ │ │ ├── memccpy.c │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memcpy.c │ │ │ ├── memmem.c │ │ │ ├── memmove.c │ │ │ ├── mempcpy.c │ │ │ ├── memrchr.c │ │ │ ├── memset.c │ │ │ ├── rindex.c │ │ │ ├── stpcpy.c │ │ │ ├── stpncpy.c │ │ │ ├── strcasecmp.c │ │ │ ├── strcasestr.c │ │ │ ├── strcat.c │ │ │ ├── strchr.c │ │ │ ├── strchrnul.c │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ ├── strcspn.c │ │ │ ├── strdup.c │ │ │ ├── strerror_r.c │ │ │ ├── strlcat.c │ │ │ ├── strlcpy.c │ │ │ ├── strlen.c │ │ │ ├── strncasecmp.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ ├── strncpy.c │ │ │ ├── strndup.c │ │ │ ├── strnlen.c │ │ │ ├── strpbrk.c │ │ │ ├── strrchr.c │ │ │ ├── strsep.c │ │ │ ├── strsignal.c │ │ │ ├── strspn.c │ │ │ ├── strstr.c │ │ │ ├── strtok.c │ │ │ ├── strtok_r.c │ │ │ ├── strverscmp.c │ │ │ ├── swab.c │ │ │ ├── wcpcpy.c │ │ │ ├── wcpncpy.c │ │ │ ├── wcscasecmp.c │ │ │ ├── wcscasecmp_l.c │ │ │ ├── wcscat.c │ │ │ ├── wcschr.c │ │ │ ├── wcscmp.c │ │ │ ├── wcscpy.c │ │ │ ├── wcscspn.c │ │ │ ├── wcsdup.c │ │ │ ├── wcslen.c │ │ │ ├── wcsncasecmp.c │ │ │ ├── wcsncasecmp_l.c │ │ │ ├── wcsncat.c │ │ │ ├── wcsncmp.c │ │ │ ├── wcsncpy.c │ │ │ ├── wcsnlen.c │ │ │ ├── wcspbrk.c │ │ │ ├── wcsrchr.c │ │ │ ├── wcsspn.c │ │ │ ├── wcsstr.c │ │ │ ├── wcstok.c │ │ │ ├── wcswcs.c │ │ │ ├── wmemchr.c │ │ │ ├── wmemcmp.c │ │ │ ├── wmemcpy.c │ │ │ ├── wmemmove.c │ │ │ ├── wmemset.c │ │ │ └── x86_64 │ │ │ │ ├── memcpy.s │ │ │ │ ├── memmove.s │ │ │ │ └── memset.s │ │ ├── temp │ │ │ ├── __randname.c │ │ │ ├── mkdtemp.c │ │ │ ├── mkostemp.c │ │ │ ├── mkostemps.c │ │ │ ├── mkstemp.c │ │ │ ├── mkstemps.c │ │ │ └── mktemp.c │ │ ├── termios │ │ │ ├── cfgetospeed.c │ │ │ ├── cfmakeraw.c │ │ │ ├── cfsetospeed.c │ │ │ ├── tcdrain.c │ │ │ ├── tcflow.c │ │ │ ├── tcflush.c │ │ │ ├── tcgetattr.c │ │ │ ├── tcgetsid.c │ │ │ ├── tcsendbreak.c │ │ │ └── tcsetattr.c │ │ ├── thread │ │ │ ├── __futex.c │ │ │ ├── __lock.c │ │ │ ├── __set_thread_area.c │ │ │ ├── __syscall_cp.c │ │ │ ├── __timedwait.c │ │ │ ├── __tls_get_addr.c │ │ │ ├── __unmapself.c │ │ │ ├── __wait.c │ │ │ ├── arm │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ ├── syscall_cp.s │ │ │ │ └── tls.s │ │ │ ├── call_once.c │ │ │ ├── clone.c │ │ │ ├── cnd_broadcast.c │ │ │ ├── cnd_destroy.c │ │ │ ├── cnd_init.c │ │ │ ├── cnd_signal.c │ │ │ ├── cnd_timedwait.c │ │ │ ├── cnd_wait.c │ │ │ ├── i386 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ ├── syscall_cp.s │ │ │ │ └── tls.s │ │ │ ├── lock_ptc.c │ │ │ ├── microblaze │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mips │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mtx_destroy.c │ │ │ ├── mtx_init.c │ │ │ ├── mtx_lock.c │ │ │ ├── mtx_timedlock.c │ │ │ ├── mtx_trylock.c │ │ │ ├── mtx_unlock.c │ │ │ ├── or1k │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── powerpc │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── pthread_atfork.c │ │ │ ├── pthread_attr_destroy.c │ │ │ ├── pthread_attr_get.c │ │ │ ├── pthread_attr_init.c │ │ │ ├── pthread_attr_setdetachstate.c │ │ │ ├── pthread_attr_setguardsize.c │ │ │ ├── pthread_attr_setinheritsched.c │ │ │ ├── pthread_attr_setschedparam.c │ │ │ ├── pthread_attr_setschedpolicy.c │ │ │ ├── pthread_attr_setscope.c │ │ │ ├── pthread_attr_setstack.c │ │ │ ├── pthread_attr_setstacksize.c │ │ │ ├── pthread_barrier_destroy.c │ │ │ ├── pthread_barrier_init.c │ │ │ ├── pthread_barrier_wait.c │ │ │ ├── pthread_barrierattr_destroy.c │ │ │ ├── pthread_barrierattr_init.c │ │ │ ├── pthread_barrierattr_setpshared.c │ │ │ ├── pthread_cancel.c │ │ │ ├── pthread_cleanup_push.c │ │ │ ├── pthread_cond_broadcast.c │ │ │ ├── pthread_cond_destroy.c │ │ │ ├── pthread_cond_init.c │ │ │ ├── pthread_cond_signal.c │ │ │ ├── pthread_cond_timedwait.c │ │ │ ├── pthread_cond_wait.c │ │ │ ├── pthread_condattr_destroy.c │ │ │ ├── pthread_condattr_init.c │ │ │ ├── pthread_condattr_setclock.c │ │ │ ├── pthread_condattr_setpshared.c │ │ │ ├── pthread_create.c │ │ │ ├── pthread_detach.c │ │ │ ├── pthread_equal.c │ │ │ ├── pthread_getattr_np.c │ │ │ ├── pthread_getconcurrency.c │ │ │ ├── pthread_getcpuclockid.c │ │ │ ├── pthread_getschedparam.c │ │ │ ├── pthread_getspecific.c │ │ │ ├── pthread_join.c │ │ │ ├── pthread_key_create.c │ │ │ ├── pthread_kill.c │ │ │ ├── pthread_mutex_consistent.c │ │ │ ├── pthread_mutex_destroy.c │ │ │ ├── pthread_mutex_getprioceiling.c │ │ │ ├── pthread_mutex_init.c │ │ │ ├── pthread_mutex_lock.c │ │ │ ├── pthread_mutex_setprioceiling.c │ │ │ ├── pthread_mutex_timedlock.c │ │ │ ├── pthread_mutex_trylock.c │ │ │ ├── pthread_mutex_unlock.c │ │ │ ├── pthread_mutexattr_destroy.c │ │ │ ├── pthread_mutexattr_init.c │ │ │ ├── pthread_mutexattr_setprotocol.c │ │ │ ├── pthread_mutexattr_setpshared.c │ │ │ ├── pthread_mutexattr_setrobust.c │ │ │ ├── pthread_mutexattr_settype.c │ │ │ ├── pthread_once.c │ │ │ ├── pthread_rwlock_destroy.c │ │ │ ├── pthread_rwlock_init.c │ │ │ ├── pthread_rwlock_rdlock.c │ │ │ ├── pthread_rwlock_timedrdlock.c │ │ │ ├── pthread_rwlock_timedwrlock.c │ │ │ ├── pthread_rwlock_tryrdlock.c │ │ │ ├── pthread_rwlock_trywrlock.c │ │ │ ├── pthread_rwlock_unlock.c │ │ │ ├── pthread_rwlock_wrlock.c │ │ │ ├── pthread_rwlockattr_destroy.c │ │ │ ├── pthread_rwlockattr_init.c │ │ │ ├── pthread_rwlockattr_setpshared.c │ │ │ ├── pthread_self.c │ │ │ ├── pthread_setcancelstate.c │ │ │ ├── pthread_setcanceltype.c │ │ │ ├── pthread_setconcurrency.c │ │ │ ├── pthread_setschedparam.c │ │ │ ├── pthread_setschedprio.c │ │ │ ├── pthread_setspecific.c │ │ │ ├── pthread_sigmask.c │ │ │ ├── pthread_spin_destroy.c │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_trylock.c │ │ │ ├── pthread_spin_unlock.c │ │ │ ├── pthread_testcancel.c │ │ │ ├── sem_destroy.c │ │ │ ├── sem_getvalue.c │ │ │ ├── sem_init.c │ │ │ ├── sem_open.c │ │ │ ├── sem_post.c │ │ │ ├── sem_timedwait.c │ │ │ ├── sem_trywait.c │ │ │ ├── sem_unlink.c │ │ │ ├── sem_wait.c │ │ │ ├── sh │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── synccall.c │ │ │ ├── syscall_cp.c │ │ │ ├── thrd_create.c │ │ │ ├── thrd_exit.c │ │ │ ├── thrd_join.c │ │ │ ├── thrd_sleep.c │ │ │ ├── thrd_yield.c │ │ │ ├── tls.c │ │ │ ├── tss_create.c │ │ │ ├── tss_delete.c │ │ │ ├── tss_set.c │ │ │ ├── vmlock.c │ │ │ ├── x32 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ └── x86_64 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ ├── time │ │ │ ├── __asctime.c │ │ │ ├── __map_file.c │ │ │ ├── __month_to_secs.c │ │ │ ├── __secs_to_tm.c │ │ │ ├── __tm_to_secs.c │ │ │ ├── __tz.c │ │ │ ├── __year_to_secs.c │ │ │ ├── asctime.c │ │ │ ├── asctime_r.c │ │ │ ├── clock.c │ │ │ ├── clock_getcpuclockid.c │ │ │ ├── clock_getres.c │ │ │ ├── clock_gettime.c │ │ │ ├── clock_nanosleep.c │ │ │ ├── clock_settime.c │ │ │ ├── ctime.c │ │ │ ├── ctime_r.c │ │ │ ├── difftime.c │ │ │ ├── ftime.c │ │ │ ├── getdate.c │ │ │ ├── gettimeofday.c │ │ │ ├── gmtime.c │ │ │ ├── gmtime_r.c │ │ │ ├── localtime.c │ │ │ ├── localtime_r.c │ │ │ ├── mktime.c │ │ │ ├── nanosleep.c │ │ │ ├── strftime.c │ │ │ ├── strptime.c │ │ │ ├── time.c │ │ │ ├── time_impl.h │ │ │ ├── timegm.c │ │ │ ├── timer_create.c │ │ │ ├── timer_delete.c │ │ │ ├── timer_getoverrun.c │ │ │ ├── timer_gettime.c │ │ │ ├── timer_settime.c │ │ │ ├── times.c │ │ │ ├── timespec_get.c │ │ │ ├── utime.c │ │ │ └── wcsftime.c │ │ └── unistd │ │ │ ├── _exit.c │ │ │ ├── access.c │ │ │ ├── acct.c │ │ │ ├── alarm.c │ │ │ ├── chdir.c │ │ │ ├── chown.c │ │ │ ├── close.c │ │ │ ├── ctermid.c │ │ │ ├── dup.c │ │ │ ├── dup2.c │ │ │ ├── dup3.c │ │ │ ├── faccessat.c │ │ │ ├── fchdir.c │ │ │ ├── fchown.c │ │ │ ├── fchownat.c │ │ │ ├── fdatasync.c │ │ │ ├── fsync.c │ │ │ ├── ftruncate.c │ │ │ ├── getcwd.c │ │ │ ├── getegid.c │ │ │ ├── geteuid.c │ │ │ ├── getgid.c │ │ │ ├── getgroups.c │ │ │ ├── gethostname.c │ │ │ ├── getlogin.c │ │ │ ├── getlogin_r.c │ │ │ ├── getpgid.c │ │ │ ├── getpgrp.c │ │ │ ├── getpid.c │ │ │ ├── getppid.c │ │ │ ├── getsid.c │ │ │ ├── getuid.c │ │ │ ├── isatty.c │ │ │ ├── lchown.c │ │ │ ├── link.c │ │ │ ├── linkat.c │ │ │ ├── lseek.c │ │ │ ├── mips │ │ │ └── pipe.s │ │ │ ├── nice.c │ │ │ ├── pause.c │ │ │ ├── pipe.c │ │ │ ├── pipe2.c │ │ │ ├── posix_close.c │ │ │ ├── pread.c │ │ │ ├── preadv.c │ │ │ ├── pwrite.c │ │ │ ├── pwritev.c │ │ │ ├── read.c │ │ │ ├── readlink.c │ │ │ ├── readlinkat.c │ │ │ ├── readv.c │ │ │ ├── renameat.c │ │ │ ├── rmdir.c │ │ │ ├── setegid.c │ │ │ ├── seteuid.c │ │ │ ├── setgid.c │ │ │ ├── setpgid.c │ │ │ ├── setpgrp.c │ │ │ ├── setregid.c │ │ │ ├── setresgid.c │ │ │ ├── setresuid.c │ │ │ ├── setreuid.c │ │ │ ├── setsid.c │ │ │ ├── setuid.c │ │ │ ├── setxid.c │ │ │ ├── sh │ │ │ └── pipe.s │ │ │ ├── sleep.c │ │ │ ├── symlink.c │ │ │ ├── symlinkat.c │ │ │ ├── sync.c │ │ │ ├── tcgetpgrp.c │ │ │ ├── tcsetpgrp.c │ │ │ ├── truncate.c │ │ │ ├── ttyname.c │ │ │ ├── ttyname_r.c │ │ │ ├── ualarm.c │ │ │ ├── unlink.c │ │ │ ├── unlinkat.c │ │ │ ├── usleep.c │ │ │ ├── write.c │ │ │ └── writev.c │ └── tools │ │ ├── install.sh │ │ ├── mkalltypes.sed │ │ ├── musl-gcc.specs.sh │ │ └── version.sh └── sqlite3 │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite3ext.h ├── generate-interrupt-handler.sh ├── generate-lua-bundle.sh ├── grub.cfg ├── license.txt ├── link.ld ├── musl-custom-gcc ├── musl-gcc.specs ├── readme.md ├── screenshot.png └── src ├── font.lua ├── init.S ├── init.c ├── interrupt.S ├── luakernel.c ├── luakernel.lua ├── multiboot2.h ├── util.h └── vbe.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | *.so 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/Makefile -------------------------------------------------------------------------------- /bin/luakernel.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/bin/luakernel.iso -------------------------------------------------------------------------------- /bochsrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/bochsrc.txt -------------------------------------------------------------------------------- /dep/lsqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lsqlite3.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/Makefile -------------------------------------------------------------------------------- /dep/lua-5.2.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/README -------------------------------------------------------------------------------- /dep/lua-5.2.3/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/doc/logo.gif -------------------------------------------------------------------------------- /dep/lua-5.2.3/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/doc/lua.1 -------------------------------------------------------------------------------- /dep/lua-5.2.3/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/doc/lua.css -------------------------------------------------------------------------------- /dep/lua-5.2.3/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/doc/luac.1 -------------------------------------------------------------------------------- /dep/lua-5.2.3/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/doc/manual.css -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/Makefile -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lapi.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lapi.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lauxlib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lauxlib.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lbaselib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lbitlib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lcode.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lcode.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lcorolib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lctype.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lctype.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ldblib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ldebug.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ldebug.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ldo.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ldo.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ldump.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lfunc.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lfunc.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lgc.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lgc.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/linit.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/liolib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/llex.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/llex.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/llimits.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lmathlib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lmem.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lmem.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/loadlib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lobject.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lobject.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lopcodes.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lopcodes.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/loslib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lparser.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lparser.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lstate.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lstate.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lstring.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lstring.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lstrlib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ltable.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ltable.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ltablib.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ltm.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/ltm.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lua.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lua.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lua.hpp -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/luac.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/luaconf.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lualib.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lundump.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lundump.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lvm.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lvm.h -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lzio.c -------------------------------------------------------------------------------- /dep/lua-5.2.3/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/lua-5.2.3/src/lzio.h -------------------------------------------------------------------------------- /dep/musl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/.gitignore -------------------------------------------------------------------------------- /dep/musl/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/COPYRIGHT -------------------------------------------------------------------------------- /dep/musl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/INSTALL -------------------------------------------------------------------------------- /dep/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/Makefile -------------------------------------------------------------------------------- /dep/musl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/README -------------------------------------------------------------------------------- /dep/musl/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.4 2 | -------------------------------------------------------------------------------- /dep/musl/WHATSNEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/WHATSNEW -------------------------------------------------------------------------------- /dep/musl/arch/arm/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/arm/atomic.h -------------------------------------------------------------------------------- /dep/musl/arch/arm/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/arm/bits/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/arm/bits/ipc.h -------------------------------------------------------------------------------- /dep/musl/arch/arm/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/arm/bits/msg.h -------------------------------------------------------------------------------- /dep/musl/arch/arm/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/arm/bits/reg.h -------------------------------------------------------------------------------- /dep/musl/arch/arm/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/arm/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/arm/bits/sem.h -------------------------------------------------------------------------------- /dep/musl/arch/arm/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/arm/bits/shm.h -------------------------------------------------------------------------------- /dep/musl/arch/arm/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/arm/crt_arch.h -------------------------------------------------------------------------------- /dep/musl/arch/arm/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/arm/reloc.h -------------------------------------------------------------------------------- /dep/musl/arch/i386/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/i386/atomic.h -------------------------------------------------------------------------------- /dep/musl/arch/i386/bits/endian.h: -------------------------------------------------------------------------------- 1 | #define __BYTE_ORDER __LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /dep/musl/arch/i386/bits/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/i386/bits/io.h -------------------------------------------------------------------------------- /dep/musl/arch/i386/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/i386/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[6]; 2 | -------------------------------------------------------------------------------- /dep/musl/arch/i386/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/i386/reloc.h -------------------------------------------------------------------------------- /dep/musl/arch/microblaze/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/microblaze/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/microblaze/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[18]; 2 | -------------------------------------------------------------------------------- /dep/musl/arch/microblaze/bits/user.h: -------------------------------------------------------------------------------- 1 | /* FIXME: missing in kernel? */ 2 | -------------------------------------------------------------------------------- /dep/musl/arch/mips/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/mips/atomic.h -------------------------------------------------------------------------------- /dep/musl/arch/mips/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/mips/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/mips/reloc.h -------------------------------------------------------------------------------- /dep/musl/arch/or1k/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/or1k/atomic.h -------------------------------------------------------------------------------- /dep/musl/arch/or1k/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/or1k/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/or1k/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[13]; 2 | -------------------------------------------------------------------------------- /dep/musl/arch/or1k/bits/user.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/or1k/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/or1k/reloc.h -------------------------------------------------------------------------------- /dep/musl/arch/powerpc/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/powerpc/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/sh/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/atomic.h -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/bits/fenv.h -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/bits/ipc.h -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/bits/mman.h -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/bits/msg.h -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/bits/sem.h -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[13]; 2 | -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/bits/shm.h -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/bits/stat.h -------------------------------------------------------------------------------- /dep/musl/arch/sh/bits/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/bits/user.h -------------------------------------------------------------------------------- /dep/musl/arch/sh/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/crt_arch.h -------------------------------------------------------------------------------- /dep/musl/arch/sh/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/sh/reloc.h -------------------------------------------------------------------------------- /dep/musl/arch/x32/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/x32/atomic.h -------------------------------------------------------------------------------- /dep/musl/arch/x32/bits/endian.h: -------------------------------------------------------------------------------- 1 | #define __BYTE_ORDER __LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /dep/musl/arch/x32/bits/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/x32/bits/io.h -------------------------------------------------------------------------------- /dep/musl/arch/x32/bits/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/x32/bits/ipc.h -------------------------------------------------------------------------------- /dep/musl/arch/x32/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/x32/bits/msg.h -------------------------------------------------------------------------------- /dep/musl/arch/x32/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/x32/bits/reg.h -------------------------------------------------------------------------------- /dep/musl/arch/x32/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/x32/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/x32/bits/sem.h -------------------------------------------------------------------------------- /dep/musl/arch/x32/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/x32/bits/shm.h -------------------------------------------------------------------------------- /dep/musl/arch/x32/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/x32/crt_arch.h -------------------------------------------------------------------------------- /dep/musl/arch/x32/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/x32/reloc.h -------------------------------------------------------------------------------- /dep/musl/arch/x86_64/bits/endian.h: -------------------------------------------------------------------------------- 1 | #define __BYTE_ORDER __LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /dep/musl/arch/x86_64/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/arch/x86_64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[8]; 2 | -------------------------------------------------------------------------------- /dep/musl/arch/x86_64/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/arch/x86_64/reloc.h -------------------------------------------------------------------------------- /dep/musl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/configure -------------------------------------------------------------------------------- /dep/musl/crt/Scrt1.c: -------------------------------------------------------------------------------- 1 | #include "crt1.c" 2 | -------------------------------------------------------------------------------- /dep/musl/crt/arm/Scrt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/arm/Scrt1.s -------------------------------------------------------------------------------- /dep/musl/crt/arm/crt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/arm/crt1.s -------------------------------------------------------------------------------- /dep/musl/crt/arm/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/arm/crti.s -------------------------------------------------------------------------------- /dep/musl/crt/arm/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/arm/crtn.s -------------------------------------------------------------------------------- /dep/musl/crt/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/crt1.c -------------------------------------------------------------------------------- /dep/musl/crt/crti.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/crt/crtn.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/crt/i386/Scrt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/i386/Scrt1.s -------------------------------------------------------------------------------- /dep/musl/crt/i386/crt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/i386/crt1.s -------------------------------------------------------------------------------- /dep/musl/crt/i386/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/i386/crti.s -------------------------------------------------------------------------------- /dep/musl/crt/i386/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/i386/crtn.s -------------------------------------------------------------------------------- /dep/musl/crt/mips/crt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/mips/crt1.s -------------------------------------------------------------------------------- /dep/musl/crt/mips/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/mips/crti.s -------------------------------------------------------------------------------- /dep/musl/crt/mips/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/mips/crtn.s -------------------------------------------------------------------------------- /dep/musl/crt/or1k/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/or1k/crti.s -------------------------------------------------------------------------------- /dep/musl/crt/or1k/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/or1k/crtn.s -------------------------------------------------------------------------------- /dep/musl/crt/powerpc/crt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/powerpc/crt1.s -------------------------------------------------------------------------------- /dep/musl/crt/powerpc/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/powerpc/crti.s -------------------------------------------------------------------------------- /dep/musl/crt/powerpc/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/powerpc/crtn.s -------------------------------------------------------------------------------- /dep/musl/crt/superh/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/superh/crti.s -------------------------------------------------------------------------------- /dep/musl/crt/superh/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/superh/crtn.s -------------------------------------------------------------------------------- /dep/musl/crt/x32/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/x32/crti.s -------------------------------------------------------------------------------- /dep/musl/crt/x32/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/x32/crtn.s -------------------------------------------------------------------------------- /dep/musl/crt/x86_64/Scrt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/x86_64/Scrt1.s -------------------------------------------------------------------------------- /dep/musl/crt/x86_64/crt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/x86_64/crt1.s -------------------------------------------------------------------------------- /dep/musl/crt/x86_64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/x86_64/crti.s -------------------------------------------------------------------------------- /dep/musl/crt/x86_64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/crt/x86_64/crtn.s -------------------------------------------------------------------------------- /dep/musl/include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/aio.h -------------------------------------------------------------------------------- /dep/musl/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/alloca.h -------------------------------------------------------------------------------- /dep/musl/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/ar.h -------------------------------------------------------------------------------- /dep/musl/include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/arpa/ftp.h -------------------------------------------------------------------------------- /dep/musl/include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/arpa/inet.h -------------------------------------------------------------------------------- /dep/musl/include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /dep/musl/include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/arpa/tftp.h -------------------------------------------------------------------------------- /dep/musl/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/assert.h -------------------------------------------------------------------------------- /dep/musl/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/byteswap.h -------------------------------------------------------------------------------- /dep/musl/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/complex.h -------------------------------------------------------------------------------- /dep/musl/include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/cpio.h -------------------------------------------------------------------------------- /dep/musl/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/crypt.h -------------------------------------------------------------------------------- /dep/musl/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/ctype.h -------------------------------------------------------------------------------- /dep/musl/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/dirent.h -------------------------------------------------------------------------------- /dep/musl/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/dlfcn.h -------------------------------------------------------------------------------- /dep/musl/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/elf.h -------------------------------------------------------------------------------- /dep/musl/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/endian.h -------------------------------------------------------------------------------- /dep/musl/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/err.h -------------------------------------------------------------------------------- /dep/musl/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/errno.h -------------------------------------------------------------------------------- /dep/musl/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/fcntl.h -------------------------------------------------------------------------------- /dep/musl/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/features.h -------------------------------------------------------------------------------- /dep/musl/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/fenv.h -------------------------------------------------------------------------------- /dep/musl/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/float.h -------------------------------------------------------------------------------- /dep/musl/include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/fmtmsg.h -------------------------------------------------------------------------------- /dep/musl/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/fnmatch.h -------------------------------------------------------------------------------- /dep/musl/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/ftw.h -------------------------------------------------------------------------------- /dep/musl/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/getopt.h -------------------------------------------------------------------------------- /dep/musl/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/glob.h -------------------------------------------------------------------------------- /dep/musl/include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/grp.h -------------------------------------------------------------------------------- /dep/musl/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/iconv.h -------------------------------------------------------------------------------- /dep/musl/include/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/ifaddrs.h -------------------------------------------------------------------------------- /dep/musl/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/inttypes.h -------------------------------------------------------------------------------- /dep/musl/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/iso646.h -------------------------------------------------------------------------------- /dep/musl/include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/langinfo.h -------------------------------------------------------------------------------- /dep/musl/include/lastlog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /dep/musl/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/libgen.h -------------------------------------------------------------------------------- /dep/musl/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/libintl.h -------------------------------------------------------------------------------- /dep/musl/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/limits.h -------------------------------------------------------------------------------- /dep/musl/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/link.h -------------------------------------------------------------------------------- /dep/musl/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/locale.h -------------------------------------------------------------------------------- /dep/musl/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/malloc.h -------------------------------------------------------------------------------- /dep/musl/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/math.h -------------------------------------------------------------------------------- /dep/musl/include/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /dep/musl/include/mntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/mntent.h -------------------------------------------------------------------------------- /dep/musl/include/monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/monetary.h -------------------------------------------------------------------------------- /dep/musl/include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/mqueue.h -------------------------------------------------------------------------------- /dep/musl/include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/net/if.h -------------------------------------------------------------------------------- /dep/musl/include/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/net/route.h -------------------------------------------------------------------------------- /dep/musl/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/netdb.h -------------------------------------------------------------------------------- /dep/musl/include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/nl_types.h -------------------------------------------------------------------------------- /dep/musl/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/paths.h -------------------------------------------------------------------------------- /dep/musl/include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/poll.h -------------------------------------------------------------------------------- /dep/musl/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/pthread.h -------------------------------------------------------------------------------- /dep/musl/include/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/pty.h -------------------------------------------------------------------------------- /dep/musl/include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/pwd.h -------------------------------------------------------------------------------- /dep/musl/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/regex.h -------------------------------------------------------------------------------- /dep/musl/include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/resolv.h -------------------------------------------------------------------------------- /dep/musl/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sched.h -------------------------------------------------------------------------------- /dep/musl/include/scsi/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/scsi/scsi.h -------------------------------------------------------------------------------- /dep/musl/include/scsi/sg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/scsi/sg.h -------------------------------------------------------------------------------- /dep/musl/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/search.h -------------------------------------------------------------------------------- /dep/musl/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/semaphore.h -------------------------------------------------------------------------------- /dep/musl/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/setjmp.h -------------------------------------------------------------------------------- /dep/musl/include/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/shadow.h -------------------------------------------------------------------------------- /dep/musl/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/signal.h -------------------------------------------------------------------------------- /dep/musl/include/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/spawn.h -------------------------------------------------------------------------------- /dep/musl/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/stdalign.h -------------------------------------------------------------------------------- /dep/musl/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/stdarg.h -------------------------------------------------------------------------------- /dep/musl/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/stdbool.h -------------------------------------------------------------------------------- /dep/musl/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/stddef.h -------------------------------------------------------------------------------- /dep/musl/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/stdint.h -------------------------------------------------------------------------------- /dep/musl/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/stdio.h -------------------------------------------------------------------------------- /dep/musl/include/stdio_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/stdio_ext.h -------------------------------------------------------------------------------- /dep/musl/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/stdlib.h -------------------------------------------------------------------------------- /dep/musl/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/string.h -------------------------------------------------------------------------------- /dep/musl/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/strings.h -------------------------------------------------------------------------------- /dep/musl/include/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/stropts.h -------------------------------------------------------------------------------- /dep/musl/include/sys/acct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/acct.h -------------------------------------------------------------------------------- /dep/musl/include/sys/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/auxv.h -------------------------------------------------------------------------------- /dep/musl/include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/dir.h -------------------------------------------------------------------------------- /dep/musl/include/sys/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/epoll.h -------------------------------------------------------------------------------- /dep/musl/include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/errno.h -------------------------------------------------------------------------------- /dep/musl/include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/fcntl.h -------------------------------------------------------------------------------- /dep/musl/include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/file.h -------------------------------------------------------------------------------- /dep/musl/include/sys/fsuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/fsuid.h -------------------------------------------------------------------------------- /dep/musl/include/sys/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/io.h -------------------------------------------------------------------------------- /dep/musl/include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/ioctl.h -------------------------------------------------------------------------------- /dep/musl/include/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/ipc.h -------------------------------------------------------------------------------- /dep/musl/include/sys/kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/kd.h -------------------------------------------------------------------------------- /dep/musl/include/sys/klog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/klog.h -------------------------------------------------------------------------------- /dep/musl/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/mman.h -------------------------------------------------------------------------------- /dep/musl/include/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/mount.h -------------------------------------------------------------------------------- /dep/musl/include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/msg.h -------------------------------------------------------------------------------- /dep/musl/include/sys/mtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/mtio.h -------------------------------------------------------------------------------- /dep/musl/include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/param.h -------------------------------------------------------------------------------- /dep/musl/include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/poll.h -------------------------------------------------------------------------------- /dep/musl/include/sys/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/prctl.h -------------------------------------------------------------------------------- /dep/musl/include/sys/quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/quota.h -------------------------------------------------------------------------------- /dep/musl/include/sys/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/reg.h -------------------------------------------------------------------------------- /dep/musl/include/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/sem.h -------------------------------------------------------------------------------- /dep/musl/include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/shm.h -------------------------------------------------------------------------------- /dep/musl/include/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /dep/musl/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/stat.h -------------------------------------------------------------------------------- /dep/musl/include/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /dep/musl/include/sys/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/swap.h -------------------------------------------------------------------------------- /dep/musl/include/sys/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /dep/musl/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/time.h -------------------------------------------------------------------------------- /dep/musl/include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/timeb.h -------------------------------------------------------------------------------- /dep/musl/include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/times.h -------------------------------------------------------------------------------- /dep/musl/include/sys/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/timex.h -------------------------------------------------------------------------------- /dep/musl/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/types.h -------------------------------------------------------------------------------- /dep/musl/include/sys/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /dep/musl/include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/uio.h -------------------------------------------------------------------------------- /dep/musl/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/un.h -------------------------------------------------------------------------------- /dep/musl/include/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/user.h -------------------------------------------------------------------------------- /dep/musl/include/sys/vfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /dep/musl/include/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /dep/musl/include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/wait.h -------------------------------------------------------------------------------- /dep/musl/include/sys/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sys/xattr.h -------------------------------------------------------------------------------- /dep/musl/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /dep/musl/include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/sysexits.h -------------------------------------------------------------------------------- /dep/musl/include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/syslog.h -------------------------------------------------------------------------------- /dep/musl/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/tar.h -------------------------------------------------------------------------------- /dep/musl/include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/termios.h -------------------------------------------------------------------------------- /dep/musl/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/tgmath.h -------------------------------------------------------------------------------- /dep/musl/include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/threads.h -------------------------------------------------------------------------------- /dep/musl/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/time.h -------------------------------------------------------------------------------- /dep/musl/include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/ucontext.h -------------------------------------------------------------------------------- /dep/musl/include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/ulimit.h -------------------------------------------------------------------------------- /dep/musl/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/unistd.h -------------------------------------------------------------------------------- /dep/musl/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/utime.h -------------------------------------------------------------------------------- /dep/musl/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/utmp.h -------------------------------------------------------------------------------- /dep/musl/include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/utmpx.h -------------------------------------------------------------------------------- /dep/musl/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/values.h -------------------------------------------------------------------------------- /dep/musl/include/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/wait.h -------------------------------------------------------------------------------- /dep/musl/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/wchar.h -------------------------------------------------------------------------------- /dep/musl/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/wctype.h -------------------------------------------------------------------------------- /dep/musl/include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/include/wordexp.h -------------------------------------------------------------------------------- /dep/musl/lib/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/src/aio/aio_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/aio/aio_error.c -------------------------------------------------------------------------------- /dep/musl/src/aio/aio_fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/aio/aio_fsync.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cabs.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cabsf.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cabsl.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cacos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cacos.c -------------------------------------------------------------------------------- /dep/musl/src/complex/carg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/carg.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cargf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cargf.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cargl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cargl.c -------------------------------------------------------------------------------- /dep/musl/src/complex/casin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/casin.c -------------------------------------------------------------------------------- /dep/musl/src/complex/catan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/catan.c -------------------------------------------------------------------------------- /dep/musl/src/complex/ccos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/ccos.c -------------------------------------------------------------------------------- /dep/musl/src/complex/ccosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/ccosf.c -------------------------------------------------------------------------------- /dep/musl/src/complex/ccosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/ccosh.c -------------------------------------------------------------------------------- /dep/musl/src/complex/ccosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/ccosl.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cexp.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cexpf.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cexpl.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cimag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cimag.c -------------------------------------------------------------------------------- /dep/musl/src/complex/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/clog.c -------------------------------------------------------------------------------- /dep/musl/src/complex/clogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/clogf.c -------------------------------------------------------------------------------- /dep/musl/src/complex/clogl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/clogl.c -------------------------------------------------------------------------------- /dep/musl/src/complex/conj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/conj.c -------------------------------------------------------------------------------- /dep/musl/src/complex/conjf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/conjf.c -------------------------------------------------------------------------------- /dep/musl/src/complex/conjl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/conjl.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cpow.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cpowf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cpowf.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cpowl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cpowl.c -------------------------------------------------------------------------------- /dep/musl/src/complex/cproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/cproj.c -------------------------------------------------------------------------------- /dep/musl/src/complex/creal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/creal.c -------------------------------------------------------------------------------- /dep/musl/src/complex/csin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/csin.c -------------------------------------------------------------------------------- /dep/musl/src/complex/csinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/csinf.c -------------------------------------------------------------------------------- /dep/musl/src/complex/csinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/csinh.c -------------------------------------------------------------------------------- /dep/musl/src/complex/csinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/csinl.c -------------------------------------------------------------------------------- /dep/musl/src/complex/csqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/csqrt.c -------------------------------------------------------------------------------- /dep/musl/src/complex/ctan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/ctan.c -------------------------------------------------------------------------------- /dep/musl/src/complex/ctanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/ctanf.c -------------------------------------------------------------------------------- /dep/musl/src/complex/ctanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/ctanh.c -------------------------------------------------------------------------------- /dep/musl/src/complex/ctanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/complex/ctanl.c -------------------------------------------------------------------------------- /dep/musl/src/conf/confstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/conf/confstr.c -------------------------------------------------------------------------------- /dep/musl/src/conf/pathconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/conf/pathconf.c -------------------------------------------------------------------------------- /dep/musl/src/conf/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/conf/sysconf.c -------------------------------------------------------------------------------- /dep/musl/src/crypt/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/crypt/crypt.c -------------------------------------------------------------------------------- /dep/musl/src/crypt/crypt_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/crypt/crypt_r.c -------------------------------------------------------------------------------- /dep/musl/src/crypt/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/crypt/encrypt.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/alpha.h -------------------------------------------------------------------------------- /dep/musl/src/ctype/isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/isalnum.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/isalpha.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/isascii.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/isblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/isblank.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/iscntrl.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/isdigit.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/isgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/isgraph.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/islower.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/isprint.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/ispunct.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/isspace.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/isupper.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/punct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/punct.h -------------------------------------------------------------------------------- /dep/musl/src/ctype/toascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/toascii.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/tolower.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/toupper.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/wctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/wctrans.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/wcwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/wcwidth.c -------------------------------------------------------------------------------- /dep/musl/src/ctype/wide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ctype/wide.h -------------------------------------------------------------------------------- /dep/musl/src/dirent/dirfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/dirent/dirfd.c -------------------------------------------------------------------------------- /dep/musl/src/env/__environ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/env/__environ.c -------------------------------------------------------------------------------- /dep/musl/src/env/clearenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/env/clearenv.c -------------------------------------------------------------------------------- /dep/musl/src/env/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/env/getenv.c -------------------------------------------------------------------------------- /dep/musl/src/env/putenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/env/putenv.c -------------------------------------------------------------------------------- /dep/musl/src/env/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/env/setenv.c -------------------------------------------------------------------------------- /dep/musl/src/env/unsetenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/env/unsetenv.c -------------------------------------------------------------------------------- /dep/musl/src/exit/_Exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/exit/_Exit.c -------------------------------------------------------------------------------- /dep/musl/src/exit/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/exit/abort.c -------------------------------------------------------------------------------- /dep/musl/src/exit/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/exit/assert.c -------------------------------------------------------------------------------- /dep/musl/src/exit/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/exit/atexit.c -------------------------------------------------------------------------------- /dep/musl/src/exit/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/exit/exit.c -------------------------------------------------------------------------------- /dep/musl/src/fcntl/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/fcntl/creat.c -------------------------------------------------------------------------------- /dep/musl/src/fcntl/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/fcntl/fcntl.c -------------------------------------------------------------------------------- /dep/musl/src/fcntl/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/fcntl/open.c -------------------------------------------------------------------------------- /dep/musl/src/fcntl/openat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/fcntl/openat.c -------------------------------------------------------------------------------- /dep/musl/src/fenv/armebhf/fenv.sub: -------------------------------------------------------------------------------- 1 | ../armhf/fenv.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/fenv/armhf/fenv.sub: -------------------------------------------------------------------------------- 1 | fenv.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/fenv/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/fenv/fenv.c -------------------------------------------------------------------------------- /dep/musl/src/fenv/mips-sf/fenv.sub: -------------------------------------------------------------------------------- 1 | ../fenv.c 2 | -------------------------------------------------------------------------------- /dep/musl/src/fenv/mipsel-sf/fenv.sub: -------------------------------------------------------------------------------- 1 | ../fenv.c 2 | -------------------------------------------------------------------------------- /dep/musl/src/fenv/sh-nofpu/fenv.sub: -------------------------------------------------------------------------------- 1 | ../fenv.c 2 | -------------------------------------------------------------------------------- /dep/musl/src/fenv/sh/fenv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/fenv/sh/fenv.s -------------------------------------------------------------------------------- /dep/musl/src/fenv/sheb-nofpu/fenv.sub: -------------------------------------------------------------------------------- 1 | ../fenv.c 2 | -------------------------------------------------------------------------------- /dep/musl/src/fenv/x32/fenv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/fenv/x32/fenv.s -------------------------------------------------------------------------------- /dep/musl/src/internal/libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/internal/libc.c -------------------------------------------------------------------------------- /dep/musl/src/internal/libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/internal/libc.h -------------------------------------------------------------------------------- /dep/musl/src/internal/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/internal/libm.h -------------------------------------------------------------------------------- /dep/musl/src/internal/syscall.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/src/internal/vdso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/internal/vdso.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/ftok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/ftok.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/ipc.h -------------------------------------------------------------------------------- /dep/musl/src/ipc/msgctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/msgctl.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/msgget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/msgget.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/msgrcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/msgrcv.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/msgsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/msgsnd.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/semctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/semctl.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/semget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/semget.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/semop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/semop.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/shmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/shmat.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/shmctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/shmctl.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/shmdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/shmdt.c -------------------------------------------------------------------------------- /dep/musl/src/ipc/shmget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ipc/shmget.c -------------------------------------------------------------------------------- /dep/musl/src/ldso/dladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ldso/dladdr.c -------------------------------------------------------------------------------- /dep/musl/src/ldso/dlinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ldso/dlinfo.c -------------------------------------------------------------------------------- /dep/musl/src/ldso/dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ldso/dlsym.c -------------------------------------------------------------------------------- /dep/musl/src/ldso/dynlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ldso/dynlink.c -------------------------------------------------------------------------------- /dep/musl/src/ldso/sh/dlsym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ldso/sh/dlsym.s -------------------------------------------------------------------------------- /dep/musl/src/ldso/sh/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ldso/sh/start.s -------------------------------------------------------------------------------- /dep/musl/src/ldso/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ldso/start.c -------------------------------------------------------------------------------- /dep/musl/src/ldso/tlsdesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/ldso/tlsdesc.c -------------------------------------------------------------------------------- /dep/musl/src/legacy/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/legacy/daemon.c -------------------------------------------------------------------------------- /dep/musl/src/legacy/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/legacy/err.c -------------------------------------------------------------------------------- /dep/musl/src/legacy/ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/legacy/ftw.c -------------------------------------------------------------------------------- /dep/musl/src/legacy/ulimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/legacy/ulimit.c -------------------------------------------------------------------------------- /dep/musl/src/legacy/utmpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/legacy/utmpx.c -------------------------------------------------------------------------------- /dep/musl/src/legacy/valloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/legacy/valloc.c -------------------------------------------------------------------------------- /dep/musl/src/linux/adjtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/adjtime.c -------------------------------------------------------------------------------- /dep/musl/src/linux/brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/brk.c -------------------------------------------------------------------------------- /dep/musl/src/linux/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/cache.c -------------------------------------------------------------------------------- /dep/musl/src/linux/cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/cap.c -------------------------------------------------------------------------------- /dep/musl/src/linux/chroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/chroot.c -------------------------------------------------------------------------------- /dep/musl/src/linux/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/clone.c -------------------------------------------------------------------------------- /dep/musl/src/linux/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/epoll.c -------------------------------------------------------------------------------- /dep/musl/src/linux/eventfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/eventfd.c -------------------------------------------------------------------------------- /dep/musl/src/linux/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/flock.c -------------------------------------------------------------------------------- /dep/musl/src/linux/inotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/inotify.c -------------------------------------------------------------------------------- /dep/musl/src/linux/ioperm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/ioperm.c -------------------------------------------------------------------------------- /dep/musl/src/linux/iopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/iopl.c -------------------------------------------------------------------------------- /dep/musl/src/linux/klogctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/klogctl.c -------------------------------------------------------------------------------- /dep/musl/src/linux/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/module.c -------------------------------------------------------------------------------- /dep/musl/src/linux/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/mount.c -------------------------------------------------------------------------------- /dep/musl/src/linux/ppoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/ppoll.c -------------------------------------------------------------------------------- /dep/musl/src/linux/prctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/prctl.c -------------------------------------------------------------------------------- /dep/musl/src/linux/prlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/prlimit.c -------------------------------------------------------------------------------- /dep/musl/src/linux/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/ptrace.c -------------------------------------------------------------------------------- /dep/musl/src/linux/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/reboot.c -------------------------------------------------------------------------------- /dep/musl/src/linux/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/sbrk.c -------------------------------------------------------------------------------- /dep/musl/src/linux/setns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/setns.c -------------------------------------------------------------------------------- /dep/musl/src/linux/splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/splice.c -------------------------------------------------------------------------------- /dep/musl/src/linux/stime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/stime.c -------------------------------------------------------------------------------- /dep/musl/src/linux/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/swap.c -------------------------------------------------------------------------------- /dep/musl/src/linux/syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/syncfs.c -------------------------------------------------------------------------------- /dep/musl/src/linux/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/sysinfo.c -------------------------------------------------------------------------------- /dep/musl/src/linux/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/tee.c -------------------------------------------------------------------------------- /dep/musl/src/linux/timerfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/timerfd.c -------------------------------------------------------------------------------- /dep/musl/src/linux/unshare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/unshare.c -------------------------------------------------------------------------------- /dep/musl/src/linux/utimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/utimes.c -------------------------------------------------------------------------------- /dep/musl/src/linux/vhangup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/vhangup.c -------------------------------------------------------------------------------- /dep/musl/src/linux/wait3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/wait3.c -------------------------------------------------------------------------------- /dep/musl/src/linux/wait4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/wait4.c -------------------------------------------------------------------------------- /dep/musl/src/linux/x32/sysinfo.s: -------------------------------------------------------------------------------- 1 | # see arch/x32/src/sysinfo.c 2 | -------------------------------------------------------------------------------- /dep/musl/src/linux/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/linux/xattr.c -------------------------------------------------------------------------------- /dep/musl/src/locale/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/locale/big5.h -------------------------------------------------------------------------------- /dep/musl/src/locale/hkscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/locale/hkscs.h -------------------------------------------------------------------------------- /dep/musl/src/locale/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/locale/iconv.c -------------------------------------------------------------------------------- /dep/musl/src/locale/ksc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/locale/ksc.h -------------------------------------------------------------------------------- /dep/musl/src/locale/pleval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/locale/pleval.c -------------------------------------------------------------------------------- /dep/musl/src/malloc/DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/malloc/DESIGN -------------------------------------------------------------------------------- /dep/musl/src/malloc/__brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/malloc/__brk.c -------------------------------------------------------------------------------- /dep/musl/src/malloc/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/malloc/calloc.c -------------------------------------------------------------------------------- /dep/musl/src/malloc/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/malloc/malloc.c -------------------------------------------------------------------------------- /dep/musl/src/math/__cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__cos.c -------------------------------------------------------------------------------- /dep/musl/src/math/__cosdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__cosdf.c -------------------------------------------------------------------------------- /dep/musl/src/math/__cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__cosl.c -------------------------------------------------------------------------------- /dep/musl/src/math/__expo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__expo2.c -------------------------------------------------------------------------------- /dep/musl/src/math/__expo2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__expo2f.c -------------------------------------------------------------------------------- /dep/musl/src/math/__sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__sin.c -------------------------------------------------------------------------------- /dep/musl/src/math/__sindf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__sindf.c -------------------------------------------------------------------------------- /dep/musl/src/math/__sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__sinl.c -------------------------------------------------------------------------------- /dep/musl/src/math/__tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__tan.c -------------------------------------------------------------------------------- /dep/musl/src/math/__tandf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__tandf.c -------------------------------------------------------------------------------- /dep/musl/src/math/__tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/__tanl.c -------------------------------------------------------------------------------- /dep/musl/src/math/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/acos.c -------------------------------------------------------------------------------- /dep/musl/src/math/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/acosf.c -------------------------------------------------------------------------------- /dep/musl/src/math/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/acosh.c -------------------------------------------------------------------------------- /dep/musl/src/math/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/acoshf.c -------------------------------------------------------------------------------- /dep/musl/src/math/acoshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/acoshl.c -------------------------------------------------------------------------------- /dep/musl/src/math/acosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/acosl.c -------------------------------------------------------------------------------- /dep/musl/src/math/armebhf/fabs.sub: -------------------------------------------------------------------------------- 1 | ../armhf/fabs.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/armebhf/fabsf.sub: -------------------------------------------------------------------------------- 1 | ../armhf/fabsf.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/armebhf/sqrt.sub: -------------------------------------------------------------------------------- 1 | ../armhf/sqrt.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/armebhf/sqrtf.sub: -------------------------------------------------------------------------------- 1 | ../armhf/sqrtf.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/armhf/fabs.sub: -------------------------------------------------------------------------------- 1 | fabs.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/armhf/fabsf.sub: -------------------------------------------------------------------------------- 1 | fabsf.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/armhf/sqrt.sub: -------------------------------------------------------------------------------- 1 | sqrt.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/armhf/sqrtf.sub: -------------------------------------------------------------------------------- 1 | sqrtf.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/asin.c -------------------------------------------------------------------------------- /dep/musl/src/math/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/asinf.c -------------------------------------------------------------------------------- /dep/musl/src/math/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/asinh.c -------------------------------------------------------------------------------- /dep/musl/src/math/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/asinhf.c -------------------------------------------------------------------------------- /dep/musl/src/math/asinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/asinhl.c -------------------------------------------------------------------------------- /dep/musl/src/math/asinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/asinl.c -------------------------------------------------------------------------------- /dep/musl/src/math/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/atan.c -------------------------------------------------------------------------------- /dep/musl/src/math/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/atan2.c -------------------------------------------------------------------------------- /dep/musl/src/math/atan2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/atan2f.c -------------------------------------------------------------------------------- /dep/musl/src/math/atan2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/atan2l.c -------------------------------------------------------------------------------- /dep/musl/src/math/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/atanf.c -------------------------------------------------------------------------------- /dep/musl/src/math/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/atanh.c -------------------------------------------------------------------------------- /dep/musl/src/math/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/atanhf.c -------------------------------------------------------------------------------- /dep/musl/src/math/atanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/atanhl.c -------------------------------------------------------------------------------- /dep/musl/src/math/atanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/atanl.c -------------------------------------------------------------------------------- /dep/musl/src/math/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/cbrt.c -------------------------------------------------------------------------------- /dep/musl/src/math/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/cbrtf.c -------------------------------------------------------------------------------- /dep/musl/src/math/cbrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/cbrtl.c -------------------------------------------------------------------------------- /dep/musl/src/math/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/ceil.c -------------------------------------------------------------------------------- /dep/musl/src/math/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/ceilf.c -------------------------------------------------------------------------------- /dep/musl/src/math/ceill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/ceill.c -------------------------------------------------------------------------------- /dep/musl/src/math/copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/copysign.c -------------------------------------------------------------------------------- /dep/musl/src/math/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/cos.c -------------------------------------------------------------------------------- /dep/musl/src/math/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/cosf.c -------------------------------------------------------------------------------- /dep/musl/src/math/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/cosh.c -------------------------------------------------------------------------------- /dep/musl/src/math/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/coshf.c -------------------------------------------------------------------------------- /dep/musl/src/math/coshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/coshl.c -------------------------------------------------------------------------------- /dep/musl/src/math/cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/cosl.c -------------------------------------------------------------------------------- /dep/musl/src/math/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/erf.c -------------------------------------------------------------------------------- /dep/musl/src/math/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/erff.c -------------------------------------------------------------------------------- /dep/musl/src/math/erfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/erfl.c -------------------------------------------------------------------------------- /dep/musl/src/math/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/exp.c -------------------------------------------------------------------------------- /dep/musl/src/math/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/exp10.c -------------------------------------------------------------------------------- /dep/musl/src/math/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/exp10f.c -------------------------------------------------------------------------------- /dep/musl/src/math/exp10l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/exp10l.c -------------------------------------------------------------------------------- /dep/musl/src/math/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/exp2.c -------------------------------------------------------------------------------- /dep/musl/src/math/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/exp2f.c -------------------------------------------------------------------------------- /dep/musl/src/math/exp2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/exp2l.c -------------------------------------------------------------------------------- /dep/musl/src/math/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/expf.c -------------------------------------------------------------------------------- /dep/musl/src/math/expl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/expl.c -------------------------------------------------------------------------------- /dep/musl/src/math/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/expm1.c -------------------------------------------------------------------------------- /dep/musl/src/math/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/expm1f.c -------------------------------------------------------------------------------- /dep/musl/src/math/expm1l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/expm1l.c -------------------------------------------------------------------------------- /dep/musl/src/math/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fabs.c -------------------------------------------------------------------------------- /dep/musl/src/math/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fabsf.c -------------------------------------------------------------------------------- /dep/musl/src/math/fabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fabsl.c -------------------------------------------------------------------------------- /dep/musl/src/math/fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fdim.c -------------------------------------------------------------------------------- /dep/musl/src/math/fdimf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fdimf.c -------------------------------------------------------------------------------- /dep/musl/src/math/fdiml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fdiml.c -------------------------------------------------------------------------------- /dep/musl/src/math/finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/finite.c -------------------------------------------------------------------------------- /dep/musl/src/math/finitef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/finitef.c -------------------------------------------------------------------------------- /dep/musl/src/math/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/floor.c -------------------------------------------------------------------------------- /dep/musl/src/math/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/floorf.c -------------------------------------------------------------------------------- /dep/musl/src/math/floorl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/floorl.c -------------------------------------------------------------------------------- /dep/musl/src/math/fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fma.c -------------------------------------------------------------------------------- /dep/musl/src/math/fmaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fmaf.c -------------------------------------------------------------------------------- /dep/musl/src/math/fmal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fmal.c -------------------------------------------------------------------------------- /dep/musl/src/math/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fmax.c -------------------------------------------------------------------------------- /dep/musl/src/math/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fmaxf.c -------------------------------------------------------------------------------- /dep/musl/src/math/fmaxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fmaxl.c -------------------------------------------------------------------------------- /dep/musl/src/math/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fmin.c -------------------------------------------------------------------------------- /dep/musl/src/math/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fminf.c -------------------------------------------------------------------------------- /dep/musl/src/math/fminl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fminl.c -------------------------------------------------------------------------------- /dep/musl/src/math/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fmod.c -------------------------------------------------------------------------------- /dep/musl/src/math/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fmodf.c -------------------------------------------------------------------------------- /dep/musl/src/math/fmodl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/fmodl.c -------------------------------------------------------------------------------- /dep/musl/src/math/frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/frexp.c -------------------------------------------------------------------------------- /dep/musl/src/math/frexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/frexpf.c -------------------------------------------------------------------------------- /dep/musl/src/math/frexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/frexpl.c -------------------------------------------------------------------------------- /dep/musl/src/math/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/hypot.c -------------------------------------------------------------------------------- /dep/musl/src/math/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/hypotf.c -------------------------------------------------------------------------------- /dep/musl/src/math/hypotl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/hypotl.c -------------------------------------------------------------------------------- /dep/musl/src/math/i386/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/acosf.s: -------------------------------------------------------------------------------- 1 | # see acos.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/acosl.s: -------------------------------------------------------------------------------- 1 | # see acos.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/asinf.s: -------------------------------------------------------------------------------- 1 | # see asin.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/asinl.s: -------------------------------------------------------------------------------- 1 | # see asin.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/ceil.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/ceilf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/ceill.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/exp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/i386/exp.s -------------------------------------------------------------------------------- /dep/musl/src/math/i386/exp2.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/exp2f.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/exp2l.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/expf.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/expm1.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/expm1f.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/floorf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/floorl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/ldexp.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/ldexpf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/ldexpl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/log.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/i386/log.s -------------------------------------------------------------------------------- /dep/musl/src/math/i386/remquof.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/remquol.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/scalbln.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/scalblnf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/scalblnl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/trunc.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/truncf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/i386/truncl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/ilogb.c -------------------------------------------------------------------------------- /dep/musl/src/math/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/ilogbf.c -------------------------------------------------------------------------------- /dep/musl/src/math/ilogbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/ilogbl.c -------------------------------------------------------------------------------- /dep/musl/src/math/j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/j0.c -------------------------------------------------------------------------------- /dep/musl/src/math/j0f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/j0f.c -------------------------------------------------------------------------------- /dep/musl/src/math/j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/j1.c -------------------------------------------------------------------------------- /dep/musl/src/math/j1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/j1f.c -------------------------------------------------------------------------------- /dep/musl/src/math/jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/jn.c -------------------------------------------------------------------------------- /dep/musl/src/math/jnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/jnf.c -------------------------------------------------------------------------------- /dep/musl/src/math/ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/ldexp.c -------------------------------------------------------------------------------- /dep/musl/src/math/ldexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/ldexpf.c -------------------------------------------------------------------------------- /dep/musl/src/math/ldexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/ldexpl.c -------------------------------------------------------------------------------- /dep/musl/src/math/lgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/lgamma.c -------------------------------------------------------------------------------- /dep/musl/src/math/lgamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/lgamma_r.c -------------------------------------------------------------------------------- /dep/musl/src/math/lgammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/lgammaf.c -------------------------------------------------------------------------------- /dep/musl/src/math/lgammal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/lgammal.c -------------------------------------------------------------------------------- /dep/musl/src/math/llrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/llrint.c -------------------------------------------------------------------------------- /dep/musl/src/math/llrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/llrintf.c -------------------------------------------------------------------------------- /dep/musl/src/math/llrintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/llrintl.c -------------------------------------------------------------------------------- /dep/musl/src/math/llround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/llround.c -------------------------------------------------------------------------------- /dep/musl/src/math/llroundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/llroundf.c -------------------------------------------------------------------------------- /dep/musl/src/math/llroundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/llroundl.c -------------------------------------------------------------------------------- /dep/musl/src/math/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/log.c -------------------------------------------------------------------------------- /dep/musl/src/math/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/log10.c -------------------------------------------------------------------------------- /dep/musl/src/math/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/log10f.c -------------------------------------------------------------------------------- /dep/musl/src/math/log10l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/log10l.c -------------------------------------------------------------------------------- /dep/musl/src/math/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/log1p.c -------------------------------------------------------------------------------- /dep/musl/src/math/log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/log1pf.c -------------------------------------------------------------------------------- /dep/musl/src/math/log1pl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/log1pl.c -------------------------------------------------------------------------------- /dep/musl/src/math/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/log2.c -------------------------------------------------------------------------------- /dep/musl/src/math/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/log2f.c -------------------------------------------------------------------------------- /dep/musl/src/math/log2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/log2l.c -------------------------------------------------------------------------------- /dep/musl/src/math/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/logb.c -------------------------------------------------------------------------------- /dep/musl/src/math/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/logbf.c -------------------------------------------------------------------------------- /dep/musl/src/math/logbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/logbl.c -------------------------------------------------------------------------------- /dep/musl/src/math/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/logf.c -------------------------------------------------------------------------------- /dep/musl/src/math/logl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/logl.c -------------------------------------------------------------------------------- /dep/musl/src/math/lrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/lrint.c -------------------------------------------------------------------------------- /dep/musl/src/math/lrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/lrintf.c -------------------------------------------------------------------------------- /dep/musl/src/math/lrintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/lrintl.c -------------------------------------------------------------------------------- /dep/musl/src/math/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/lround.c -------------------------------------------------------------------------------- /dep/musl/src/math/lroundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/lroundf.c -------------------------------------------------------------------------------- /dep/musl/src/math/lroundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/lroundl.c -------------------------------------------------------------------------------- /dep/musl/src/math/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/modf.c -------------------------------------------------------------------------------- /dep/musl/src/math/modff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/modff.c -------------------------------------------------------------------------------- /dep/musl/src/math/modfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/modfl.c -------------------------------------------------------------------------------- /dep/musl/src/math/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/pow.c -------------------------------------------------------------------------------- /dep/musl/src/math/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/powf.c -------------------------------------------------------------------------------- /dep/musl/src/math/powl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/powl.c -------------------------------------------------------------------------------- /dep/musl/src/math/remquo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/remquo.c -------------------------------------------------------------------------------- /dep/musl/src/math/remquof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/remquof.c -------------------------------------------------------------------------------- /dep/musl/src/math/remquol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/remquol.c -------------------------------------------------------------------------------- /dep/musl/src/math/rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/rint.c -------------------------------------------------------------------------------- /dep/musl/src/math/rintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/rintf.c -------------------------------------------------------------------------------- /dep/musl/src/math/rintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/rintl.c -------------------------------------------------------------------------------- /dep/musl/src/math/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/round.c -------------------------------------------------------------------------------- /dep/musl/src/math/roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/roundf.c -------------------------------------------------------------------------------- /dep/musl/src/math/roundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/roundl.c -------------------------------------------------------------------------------- /dep/musl/src/math/scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/scalb.c -------------------------------------------------------------------------------- /dep/musl/src/math/scalbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/scalbf.c -------------------------------------------------------------------------------- /dep/musl/src/math/scalbln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/scalbln.c -------------------------------------------------------------------------------- /dep/musl/src/math/scalblnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/scalblnf.c -------------------------------------------------------------------------------- /dep/musl/src/math/scalblnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/scalblnl.c -------------------------------------------------------------------------------- /dep/musl/src/math/scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/scalbn.c -------------------------------------------------------------------------------- /dep/musl/src/math/scalbnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/scalbnf.c -------------------------------------------------------------------------------- /dep/musl/src/math/scalbnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/scalbnl.c -------------------------------------------------------------------------------- /dep/musl/src/math/signgam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/signgam.c -------------------------------------------------------------------------------- /dep/musl/src/math/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sin.c -------------------------------------------------------------------------------- /dep/musl/src/math/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sincos.c -------------------------------------------------------------------------------- /dep/musl/src/math/sincosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sincosf.c -------------------------------------------------------------------------------- /dep/musl/src/math/sincosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sincosl.c -------------------------------------------------------------------------------- /dep/musl/src/math/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sinf.c -------------------------------------------------------------------------------- /dep/musl/src/math/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sinh.c -------------------------------------------------------------------------------- /dep/musl/src/math/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sinhf.c -------------------------------------------------------------------------------- /dep/musl/src/math/sinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sinhl.c -------------------------------------------------------------------------------- /dep/musl/src/math/sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sinl.c -------------------------------------------------------------------------------- /dep/musl/src/math/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sqrt.c -------------------------------------------------------------------------------- /dep/musl/src/math/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sqrtf.c -------------------------------------------------------------------------------- /dep/musl/src/math/sqrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/sqrtl.c -------------------------------------------------------------------------------- /dep/musl/src/math/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/tan.c -------------------------------------------------------------------------------- /dep/musl/src/math/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/tanf.c -------------------------------------------------------------------------------- /dep/musl/src/math/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/tanh.c -------------------------------------------------------------------------------- /dep/musl/src/math/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/tanhf.c -------------------------------------------------------------------------------- /dep/musl/src/math/tanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/tanhl.c -------------------------------------------------------------------------------- /dep/musl/src/math/tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/tanl.c -------------------------------------------------------------------------------- /dep/musl/src/math/tgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/tgamma.c -------------------------------------------------------------------------------- /dep/musl/src/math/tgammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/tgammaf.c -------------------------------------------------------------------------------- /dep/musl/src/math/tgammal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/tgammal.c -------------------------------------------------------------------------------- /dep/musl/src/math/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/trunc.c -------------------------------------------------------------------------------- /dep/musl/src/math/truncf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/truncf.c -------------------------------------------------------------------------------- /dep/musl/src/math/truncl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/truncl.c -------------------------------------------------------------------------------- /dep/musl/src/math/x32/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/src/math/x32/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/x32/expl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/x32/expl.s -------------------------------------------------------------------------------- /dep/musl/src/math/x32/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/x32/fabs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/x32/fabs.s -------------------------------------------------------------------------------- /dep/musl/src/math/x32/logl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/x32/logl.s -------------------------------------------------------------------------------- /dep/musl/src/math/x32/sqrt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/math/x32/sqrt.s -------------------------------------------------------------------------------- /dep/musl/src/math/x32/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/x86_64/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/src/math/x86_64/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/x86_64/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/math/x86_64/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/misc/a64l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/a64l.c -------------------------------------------------------------------------------- /dep/musl/src/misc/basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/basename.c -------------------------------------------------------------------------------- /dep/musl/src/misc/dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/dirname.c -------------------------------------------------------------------------------- /dep/musl/src/misc/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/ffs.c -------------------------------------------------------------------------------- /dep/musl/src/misc/ffsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/ffsl.c -------------------------------------------------------------------------------- /dep/musl/src/misc/ffsll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/ffsll.c -------------------------------------------------------------------------------- /dep/musl/src/misc/fmtmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/fmtmsg.c -------------------------------------------------------------------------------- /dep/musl/src/misc/forkpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/forkpty.c -------------------------------------------------------------------------------- /dep/musl/src/misc/gethostid.c: -------------------------------------------------------------------------------- 1 | long gethostid() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /dep/musl/src/misc/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/getopt.c -------------------------------------------------------------------------------- /dep/musl/src/misc/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/ioctl.c -------------------------------------------------------------------------------- /dep/musl/src/misc/lockf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/lockf.c -------------------------------------------------------------------------------- /dep/musl/src/misc/mntent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/mntent.c -------------------------------------------------------------------------------- /dep/musl/src/misc/nftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/nftw.c -------------------------------------------------------------------------------- /dep/musl/src/misc/openpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/openpty.c -------------------------------------------------------------------------------- /dep/musl/src/misc/ptsname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/ptsname.c -------------------------------------------------------------------------------- /dep/musl/src/misc/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/pty.c -------------------------------------------------------------------------------- /dep/musl/src/misc/realpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/realpath.c -------------------------------------------------------------------------------- /dep/musl/src/misc/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/syscall.c -------------------------------------------------------------------------------- /dep/musl/src/misc/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/syslog.c -------------------------------------------------------------------------------- /dep/musl/src/misc/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/uname.c -------------------------------------------------------------------------------- /dep/musl/src/misc/wordexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/misc/wordexp.c -------------------------------------------------------------------------------- /dep/musl/src/mman/madvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/madvise.c -------------------------------------------------------------------------------- /dep/musl/src/mman/mincore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/mincore.c -------------------------------------------------------------------------------- /dep/musl/src/mman/mlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/mlock.c -------------------------------------------------------------------------------- /dep/musl/src/mman/mlockall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/mlockall.c -------------------------------------------------------------------------------- /dep/musl/src/mman/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/mmap.c -------------------------------------------------------------------------------- /dep/musl/src/mman/mprotect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/mprotect.c -------------------------------------------------------------------------------- /dep/musl/src/mman/mremap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/mremap.c -------------------------------------------------------------------------------- /dep/musl/src/mman/msync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/msync.c -------------------------------------------------------------------------------- /dep/musl/src/mman/munlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/munlock.c -------------------------------------------------------------------------------- /dep/musl/src/mman/munmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/munmap.c -------------------------------------------------------------------------------- /dep/musl/src/mman/shm_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mman/shm_open.c -------------------------------------------------------------------------------- /dep/musl/src/mq/mq_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mq/mq_close.c -------------------------------------------------------------------------------- /dep/musl/src/mq/mq_getattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mq/mq_getattr.c -------------------------------------------------------------------------------- /dep/musl/src/mq/mq_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mq/mq_notify.c -------------------------------------------------------------------------------- /dep/musl/src/mq/mq_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mq/mq_open.c -------------------------------------------------------------------------------- /dep/musl/src/mq/mq_receive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mq/mq_receive.c -------------------------------------------------------------------------------- /dep/musl/src/mq/mq_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mq/mq_send.c -------------------------------------------------------------------------------- /dep/musl/src/mq/mq_setattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mq/mq_setattr.c -------------------------------------------------------------------------------- /dep/musl/src/mq/mq_unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/mq/mq_unlink.c -------------------------------------------------------------------------------- /dep/musl/src/network/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/bind.c -------------------------------------------------------------------------------- /dep/musl/src/network/ent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/ent.c -------------------------------------------------------------------------------- /dep/musl/src/network/ether.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/ether.c -------------------------------------------------------------------------------- /dep/musl/src/network/htonl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/htonl.c -------------------------------------------------------------------------------- /dep/musl/src/network/htons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/htons.c -------------------------------------------------------------------------------- /dep/musl/src/network/ntohl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/ntohl.c -------------------------------------------------------------------------------- /dep/musl/src/network/ntohs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/ntohs.c -------------------------------------------------------------------------------- /dep/musl/src/network/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/proto.c -------------------------------------------------------------------------------- /dep/musl/src/network/recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/recv.c -------------------------------------------------------------------------------- /dep/musl/src/network/res_init.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int res_init() 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /dep/musl/src/network/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/send.c -------------------------------------------------------------------------------- /dep/musl/src/network/serv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/network/serv.c -------------------------------------------------------------------------------- /dep/musl/src/passwd/pwf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/passwd/pwf.h -------------------------------------------------------------------------------- /dep/musl/src/prng/__seed48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/prng/__seed48.c -------------------------------------------------------------------------------- /dep/musl/src/prng/drand48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/prng/drand48.c -------------------------------------------------------------------------------- /dep/musl/src/prng/lcong48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/prng/lcong48.c -------------------------------------------------------------------------------- /dep/musl/src/prng/lrand48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/prng/lrand48.c -------------------------------------------------------------------------------- /dep/musl/src/prng/mrand48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/prng/mrand48.c -------------------------------------------------------------------------------- /dep/musl/src/prng/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/prng/rand.c -------------------------------------------------------------------------------- /dep/musl/src/prng/rand_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/prng/rand_r.c -------------------------------------------------------------------------------- /dep/musl/src/prng/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/prng/random.c -------------------------------------------------------------------------------- /dep/musl/src/prng/seed48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/prng/seed48.c -------------------------------------------------------------------------------- /dep/musl/src/prng/srand48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/prng/srand48.c -------------------------------------------------------------------------------- /dep/musl/src/process/execl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/process/execl.c -------------------------------------------------------------------------------- /dep/musl/src/process/execv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/process/execv.c -------------------------------------------------------------------------------- /dep/musl/src/process/fdop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/process/fdop.h -------------------------------------------------------------------------------- /dep/musl/src/process/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/process/fork.c -------------------------------------------------------------------------------- /dep/musl/src/process/vfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/process/vfork.c -------------------------------------------------------------------------------- /dep/musl/src/process/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/process/wait.c -------------------------------------------------------------------------------- /dep/musl/src/regex/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/regex/fnmatch.c -------------------------------------------------------------------------------- /dep/musl/src/regex/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/regex/glob.c -------------------------------------------------------------------------------- /dep/musl/src/regex/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/regex/regcomp.c -------------------------------------------------------------------------------- /dep/musl/src/regex/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/regex/regexec.c -------------------------------------------------------------------------------- /dep/musl/src/regex/tre-mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/regex/tre-mem.c -------------------------------------------------------------------------------- /dep/musl/src/regex/tre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/regex/tre.h -------------------------------------------------------------------------------- /dep/musl/src/search/insque.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/search/insque.c -------------------------------------------------------------------------------- /dep/musl/src/select/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/select/poll.c -------------------------------------------------------------------------------- /dep/musl/src/select/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/select/select.c -------------------------------------------------------------------------------- /dep/musl/src/setjmp/longjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/src/setjmp/mips-sf/longjmp.sub: -------------------------------------------------------------------------------- 1 | longjmp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/setjmp/mips-sf/setjmp.sub: -------------------------------------------------------------------------------- 1 | setjmp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/setjmp/mipsel-sf/longjmp.sub: -------------------------------------------------------------------------------- 1 | ../mips-sf/longjmp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/setjmp/mipsel-sf/setjmp.sub: -------------------------------------------------------------------------------- 1 | ../mips-sf/setjmp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/setjmp/setjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/src/setjmp/sh-nofpu/longjmp.sub: -------------------------------------------------------------------------------- 1 | longjmp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/setjmp/sh-nofpu/setjmp.sub: -------------------------------------------------------------------------------- 1 | setjmp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/setjmp/sheb-nofpu/longjmp.sub: -------------------------------------------------------------------------------- 1 | ../sh-nofpu/longjmp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/setjmp/sheb-nofpu/setjmp.sub: -------------------------------------------------------------------------------- 1 | ../sh-nofpu/setjmp.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/signal/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/signal/block.c -------------------------------------------------------------------------------- /dep/musl/src/signal/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/signal/kill.c -------------------------------------------------------------------------------- /dep/musl/src/signal/killpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/signal/killpg.c -------------------------------------------------------------------------------- /dep/musl/src/signal/raise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/signal/raise.c -------------------------------------------------------------------------------- /dep/musl/src/signal/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/signal/signal.c -------------------------------------------------------------------------------- /dep/musl/src/signal/sigrtmin.c: -------------------------------------------------------------------------------- 1 | int __libc_current_sigrtmin() 2 | { 3 | return 35; 4 | } 5 | -------------------------------------------------------------------------------- /dep/musl/src/signal/sigset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/signal/sigset.c -------------------------------------------------------------------------------- /dep/musl/src/stat/__xstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/__xstat.c -------------------------------------------------------------------------------- /dep/musl/src/stat/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/chmod.c -------------------------------------------------------------------------------- /dep/musl/src/stat/fchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/fchmod.c -------------------------------------------------------------------------------- /dep/musl/src/stat/fchmodat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/fchmodat.c -------------------------------------------------------------------------------- /dep/musl/src/stat/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/fstat.c -------------------------------------------------------------------------------- /dep/musl/src/stat/fstatat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/fstatat.c -------------------------------------------------------------------------------- /dep/musl/src/stat/futimens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/futimens.c -------------------------------------------------------------------------------- /dep/musl/src/stat/lchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/lchmod.c -------------------------------------------------------------------------------- /dep/musl/src/stat/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/lstat.c -------------------------------------------------------------------------------- /dep/musl/src/stat/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/mkdir.c -------------------------------------------------------------------------------- /dep/musl/src/stat/mkdirat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/mkdirat.c -------------------------------------------------------------------------------- /dep/musl/src/stat/mkfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/mkfifo.c -------------------------------------------------------------------------------- /dep/musl/src/stat/mkfifoat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/mkfifoat.c -------------------------------------------------------------------------------- /dep/musl/src/stat/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/mknod.c -------------------------------------------------------------------------------- /dep/musl/src/stat/mknodat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/mknodat.c -------------------------------------------------------------------------------- /dep/musl/src/stat/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/stat.c -------------------------------------------------------------------------------- /dep/musl/src/stat/statvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/statvfs.c -------------------------------------------------------------------------------- /dep/musl/src/stat/umask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stat/umask.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/__uflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/__uflow.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/dprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/dprintf.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/ext.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/ext2.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fclose.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/feof.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/ferror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/ferror.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fflush.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fgetc.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fgetln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fgetln.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fgetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fgetpos.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fgets.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fgetwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fgetwc.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fgetws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fgetws.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fileno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fileno.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fopen.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fprintf.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fputc.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fputs.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fputwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fputwc.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fputws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fputws.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fread.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/freopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/freopen.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fscanf.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fseek.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fsetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fsetpos.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/ftell.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fwide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fwide.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fwrite.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/fwscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/fwscanf.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/getc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/getc.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/getchar.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/getline.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/gets.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/getw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/getw.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/getwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/getwc.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/pclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/pclose.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/perror.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/popen.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/printf.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/putc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/putc.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/putchar.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/puts.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/putw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/putw.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/putwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/putwc.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/remove.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/rename.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/rewind.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/scanf.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/setbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/setbuf.c -------------------------------------------------------------------------------- /dep/musl/src/stdio/stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdio/stdin.c -------------------------------------------------------------------------------- /dep/musl/src/stdlib/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdlib/abs.c -------------------------------------------------------------------------------- /dep/musl/src/stdlib/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdlib/atoi.c -------------------------------------------------------------------------------- /dep/musl/src/stdlib/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdlib/atol.c -------------------------------------------------------------------------------- /dep/musl/src/stdlib/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdlib/div.c -------------------------------------------------------------------------------- /dep/musl/src/stdlib/ecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdlib/ecvt.c -------------------------------------------------------------------------------- /dep/musl/src/stdlib/fcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdlib/fcvt.c -------------------------------------------------------------------------------- /dep/musl/src/stdlib/gcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdlib/gcvt.c -------------------------------------------------------------------------------- /dep/musl/src/stdlib/labs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdlib/labs.c -------------------------------------------------------------------------------- /dep/musl/src/stdlib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/stdlib/ldiv.c -------------------------------------------------------------------------------- /dep/musl/src/string/armel/memcpy.sub: -------------------------------------------------------------------------------- 1 | memcpy.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/string/armhf/memcpy.sub: -------------------------------------------------------------------------------- 1 | ../armel/memcpy.s 2 | -------------------------------------------------------------------------------- /dep/musl/src/string/bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/string/bcmp.c -------------------------------------------------------------------------------- /dep/musl/src/string/swab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/string/swab.c -------------------------------------------------------------------------------- /dep/musl/src/temp/mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/temp/mktemp.c -------------------------------------------------------------------------------- /dep/musl/src/thread/__unmapself.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/src/thread/syscall_cp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/src/thread/tls.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dep/musl/src/time/__tz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/time/__tz.c -------------------------------------------------------------------------------- /dep/musl/src/time/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/time/clock.c -------------------------------------------------------------------------------- /dep/musl/src/time/ctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/time/ctime.c -------------------------------------------------------------------------------- /dep/musl/src/time/ftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/time/ftime.c -------------------------------------------------------------------------------- /dep/musl/src/time/gmtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/time/gmtime.c -------------------------------------------------------------------------------- /dep/musl/src/time/mktime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/time/mktime.c -------------------------------------------------------------------------------- /dep/musl/src/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/time/time.c -------------------------------------------------------------------------------- /dep/musl/src/time/timegm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/time/timegm.c -------------------------------------------------------------------------------- /dep/musl/src/time/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/time/times.c -------------------------------------------------------------------------------- /dep/musl/src/time/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/time/utime.c -------------------------------------------------------------------------------- /dep/musl/src/unistd/acct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/unistd/acct.c -------------------------------------------------------------------------------- /dep/musl/src/unistd/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/unistd/dup.c -------------------------------------------------------------------------------- /dep/musl/src/unistd/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/unistd/dup2.c -------------------------------------------------------------------------------- /dep/musl/src/unistd/dup3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/unistd/dup3.c -------------------------------------------------------------------------------- /dep/musl/src/unistd/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/unistd/link.c -------------------------------------------------------------------------------- /dep/musl/src/unistd/nice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/unistd/nice.c -------------------------------------------------------------------------------- /dep/musl/src/unistd/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/unistd/pipe.c -------------------------------------------------------------------------------- /dep/musl/src/unistd/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/unistd/read.c -------------------------------------------------------------------------------- /dep/musl/src/unistd/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/src/unistd/sync.c -------------------------------------------------------------------------------- /dep/musl/tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/tools/install.sh -------------------------------------------------------------------------------- /dep/musl/tools/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/musl/tools/version.sh -------------------------------------------------------------------------------- /dep/sqlite3/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/sqlite3/sqlite3.c -------------------------------------------------------------------------------- /dep/sqlite3/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/sqlite3/sqlite3.h -------------------------------------------------------------------------------- /dep/sqlite3/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/dep/sqlite3/sqlite3ext.h -------------------------------------------------------------------------------- /generate-lua-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/generate-lua-bundle.sh -------------------------------------------------------------------------------- /grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/grub.cfg -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/license.txt -------------------------------------------------------------------------------- /link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/link.ld -------------------------------------------------------------------------------- /musl-custom-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/musl-custom-gcc -------------------------------------------------------------------------------- /musl-gcc.specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/musl-gcc.specs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/font.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/src/font.lua -------------------------------------------------------------------------------- /src/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/src/init.S -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/src/init.c -------------------------------------------------------------------------------- /src/interrupt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/src/interrupt.S -------------------------------------------------------------------------------- /src/luakernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/src/luakernel.c -------------------------------------------------------------------------------- /src/luakernel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/src/luakernel.lua -------------------------------------------------------------------------------- /src/multiboot2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/src/multiboot2.h -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/src/util.h -------------------------------------------------------------------------------- /src/vbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ers35/luakernel/HEAD/src/vbe.h --------------------------------------------------------------------------------