├── .gitignore ├── LICENSE ├── Makefile ├── config.mk ├── dump.cpp ├── dump.py ├── dump.ql ├── il2cpp-api-functions.h ├── il2cpp-class.h ├── il2cpp-tabledefs.h ├── libc.py ├── musl ├── .gitignore ├── .mailmap ├── COPYRIGHT ├── INSTALL ├── Makefile ├── README ├── VERSION ├── WHATSNEW ├── arch │ ├── aarch64 │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── mman.h │ │ │ ├── posix.h │ │ │ ├── reg.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── fp_arch.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── arm │ │ ├── arch.mak │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── ioctl_fix.h │ │ │ ├── ipcstat.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── generic │ │ ├── bits │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── hwcap.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ioctl_fix.h │ │ │ ├── ipc.h │ │ │ ├── ipcstat.h │ │ │ ├── kd.h │ │ │ ├── limits.h │ │ │ ├── link.h │ │ │ ├── mman.h │ │ │ ├── msg.h │ │ │ ├── poll.h │ │ │ ├── ptrace.h │ │ │ ├── resource.h │ │ │ ├── sem.h │ │ │ ├── shm.h │ │ │ ├── socket.h │ │ │ ├── soundcard.h │ │ │ ├── statfs.h │ │ │ ├── termios.h │ │ │ └── vt.h │ │ └── fp_arch.h │ ├── i386 │ │ ├── arch.mak │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── io.h │ │ │ ├── ipcstat.h │ │ │ ├── limits.h │ │ │ ├── mman.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── m68k │ │ ├── arch.mak │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── ipcstat.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── microblaze │ │ ├── arch.mak │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── float.h │ │ │ ├── ipcstat.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── reg.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── mips │ │ ├── arch.mak │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── ioctl.h │ │ │ ├── ipcstat.h │ │ │ ├── mman.h │ │ │ ├── msg.h │ │ │ ├── poll.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ ├── termios.h │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── ksigaction.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── mips64 │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── mman.h │ │ │ ├── poll.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ ├── termios.h │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── ksigaction.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── mipsn32 │ │ ├── arch.mak │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── ioctl.h │ │ │ ├── ipcstat.h │ │ │ ├── mman.h │ │ │ ├── msg.h │ │ │ ├── poll.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ ├── termios.h │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── ksigaction.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── or1k │ │ ├── arch.mak │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── float.h │ │ │ ├── ipcstat.h │ │ │ ├── limits.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── reg.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── powerpc │ │ ├── arch.mak │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── ipcstat.h │ │ │ ├── mman.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ ├── termios.h │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── powerpc64 │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── mman.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ ├── termios.h │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── riscv64 │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── posix.h │ │ │ ├── reg.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── s390x │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── ioctl_fix.h │ │ │ ├── limits.h │ │ │ ├── link.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── sh │ │ ├── arch.mak │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── ioctl.h │ │ │ ├── ipcstat.h │ │ │ ├── limits.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── ksigaction.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ ├── x32 │ │ ├── atomic_arch.h │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── io.h │ │ │ ├── ioctl_fix.h │ │ │ ├── ipc.h │ │ │ ├── limits.h │ │ │ ├── mman.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── ksigaction.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h │ └── x86_64 │ │ ├── atomic_arch.h │ │ ├── bits │ │ ├── alltypes.h.in │ │ ├── fenv.h │ │ ├── float.h │ │ ├── io.h │ │ ├── limits.h │ │ ├── mman.h │ │ ├── posix.h │ │ ├── ptrace.h │ │ ├── reg.h │ │ ├── sem.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── stat.h │ │ ├── stdint.h │ │ ├── syscall.h.in │ │ └── user.h │ │ ├── crt_arch.h │ │ ├── ksigaction.h │ │ ├── kstat.h │ │ ├── pthread_arch.h │ │ ├── reloc.h │ │ └── syscall_arch.h ├── compat │ └── time32 │ │ ├── __xstat.c │ │ ├── adjtime32.c │ │ ├── adjtimex_time32.c │ │ ├── aio_suspend_time32.c │ │ ├── clock_adjtime32.c │ │ ├── clock_getres_time32.c │ │ ├── clock_gettime32.c │ │ ├── clock_nanosleep_time32.c │ │ ├── clock_settime32.c │ │ ├── cnd_timedwait_time32.c │ │ ├── ctime32.c │ │ ├── ctime32_r.c │ │ ├── difftime32.c │ │ ├── fstat_time32.c │ │ ├── fstatat_time32.c │ │ ├── ftime32.c │ │ ├── futimens_time32.c │ │ ├── futimes_time32.c │ │ ├── futimesat_time32.c │ │ ├── getitimer_time32.c │ │ ├── getrusage_time32.c │ │ ├── gettimeofday_time32.c │ │ ├── gmtime32.c │ │ ├── gmtime32_r.c │ │ ├── localtime32.c │ │ ├── localtime32_r.c │ │ ├── lstat_time32.c │ │ ├── lutimes_time32.c │ │ ├── mktime32.c │ │ ├── mq_timedreceive_time32.c │ │ ├── mq_timedsend_time32.c │ │ ├── mtx_timedlock_time32.c │ │ ├── nanosleep_time32.c │ │ ├── ppoll_time32.c │ │ ├── pselect_time32.c │ │ ├── pthread_cond_timedwait_time32.c │ │ ├── pthread_mutex_timedlock_time32.c │ │ ├── pthread_rwlock_timedrdlock_time32.c │ │ ├── pthread_rwlock_timedwrlock_time32.c │ │ ├── pthread_timedjoin_np_time32.c │ │ ├── recvmmsg_time32.c │ │ ├── sched_rr_get_interval_time32.c │ │ ├── select_time32.c │ │ ├── sem_timedwait_time32.c │ │ ├── semtimedop_time32.c │ │ ├── setitimer_time32.c │ │ ├── settimeofday_time32.c │ │ ├── sigtimedwait_time32.c │ │ ├── stat_time32.c │ │ ├── stime32.c │ │ ├── thrd_sleep_time32.c │ │ ├── time32.c │ │ ├── time32.h │ │ ├── time32gm.c │ │ ├── timer_gettime32.c │ │ ├── timer_settime32.c │ │ ├── timerfd_gettime32.c │ │ ├── timerfd_settime32.c │ │ ├── timespec_get_time32.c │ │ ├── utime_time32.c │ │ ├── utimensat_time32.c │ │ ├── utimes_time32.c │ │ ├── wait3_time32.c │ │ └── wait4_time32.c ├── configure ├── crt │ ├── Scrt1.c │ ├── aarch64 │ │ ├── crti.s │ │ └── crtn.s │ ├── arm │ │ ├── crti.s │ │ └── crtn.s │ ├── crt1.c │ ├── crti.c │ ├── crtn.c │ ├── i386 │ │ ├── crti.s │ │ └── crtn.s │ ├── microblaze │ │ ├── crti.s │ │ └── crtn.s │ ├── mips │ │ ├── crti.s │ │ └── crtn.s │ ├── mips64 │ │ ├── crti.s │ │ └── crtn.s │ ├── mipsn32 │ │ ├── crti.s │ │ └── crtn.s │ ├── or1k │ │ ├── crti.s │ │ └── crtn.s │ ├── powerpc │ │ ├── crti.s │ │ └── crtn.s │ ├── powerpc64 │ │ ├── crti.s │ │ └── crtn.s │ ├── rcrt1.c │ ├── s390x │ │ ├── crti.s │ │ └── crtn.s │ ├── sh │ │ ├── crti.s │ │ └── crtn.s │ ├── x32 │ │ ├── crti.s │ │ └── crtn.s │ └── x86_64 │ │ ├── crti.s │ │ └── crtn.s ├── dynamic.list ├── include │ ├── aio.h │ ├── alloca.h │ ├── alltypes.h.in │ ├── ar.h │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── nameser.h │ │ ├── nameser_compat.h │ │ ├── telnet.h │ │ └── tftp.h │ ├── assert.h │ ├── byteswap.h │ ├── complex.h │ ├── cpio.h │ ├── crypt.h │ ├── ctype.h │ ├── dirent.h │ ├── dlfcn.h │ ├── elf.h │ ├── endian.h │ ├── err.h │ ├── errno.h │ ├── fcntl.h │ ├── features.h │ ├── fenv.h │ ├── float.h │ ├── fmtmsg.h │ ├── fnmatch.h │ ├── ftw.h │ ├── getopt.h │ ├── glob.h │ ├── grp.h │ ├── iconv.h │ ├── ifaddrs.h │ ├── inttypes.h │ ├── iso646.h │ ├── langinfo.h │ ├── lastlog.h │ ├── libgen.h │ ├── libintl.h │ ├── limits.h │ ├── link.h │ ├── locale.h │ ├── malloc.h │ ├── math.h │ ├── memory.h │ ├── mntent.h │ ├── monetary.h │ ├── mqueue.h │ ├── net │ │ ├── ethernet.h │ │ ├── if.h │ │ ├── if_arp.h │ │ └── route.h │ ├── netdb.h │ ├── netinet │ │ ├── ether.h │ │ ├── icmp6.h │ │ ├── if_ether.h │ │ ├── igmp.h │ │ ├── in.h │ │ ├── in_systm.h │ │ ├── ip.h │ │ ├── ip6.h │ │ ├── ip_icmp.h │ │ ├── tcp.h │ │ └── udp.h │ ├── netpacket │ │ └── packet.h │ ├── nl_types.h │ ├── paths.h │ ├── poll.h │ ├── pthread.h │ ├── pty.h │ ├── pwd.h │ ├── regex.h │ ├── resolv.h │ ├── sched.h │ ├── scsi │ │ ├── scsi.h │ │ ├── scsi_ioctl.h │ │ └── sg.h │ ├── search.h │ ├── semaphore.h │ ├── setjmp.h │ ├── shadow.h │ ├── signal.h │ ├── spawn.h │ ├── stdalign.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stdc-predef.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdio_ext.h │ ├── stdlib.h │ ├── stdnoreturn.h │ ├── string.h │ ├── strings.h │ ├── stropts.h │ ├── sys │ │ ├── acct.h │ │ ├── auxv.h │ │ ├── cachectl.h │ │ ├── dir.h │ │ ├── epoll.h │ │ ├── errno.h │ │ ├── eventfd.h │ │ ├── fanotify.h │ │ ├── fcntl.h │ │ ├── file.h │ │ ├── fsuid.h │ │ ├── inotify.h │ │ ├── io.h │ │ ├── ioctl.h │ │ ├── ipc.h │ │ ├── kd.h │ │ ├── klog.h │ │ ├── membarrier.h │ │ ├── mman.h │ │ ├── mount.h │ │ ├── msg.h │ │ ├── mtio.h │ │ ├── param.h │ │ ├── personality.h │ │ ├── poll.h │ │ ├── prctl.h │ │ ├── procfs.h │ │ ├── ptrace.h │ │ ├── quota.h │ │ ├── random.h │ │ ├── reboot.h │ │ ├── reg.h │ │ ├── resource.h │ │ ├── select.h │ │ ├── sem.h │ │ ├── sendfile.h │ │ ├── shm.h │ │ ├── signal.h │ │ ├── signalfd.h │ │ ├── socket.h │ │ ├── soundcard.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── statvfs.h │ │ ├── stropts.h │ │ ├── swap.h │ │ ├── syscall.h │ │ ├── sysinfo.h │ │ ├── syslog.h │ │ ├── sysmacros.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timeb.h │ │ ├── timerfd.h │ │ ├── times.h │ │ ├── timex.h │ │ ├── ttydefaults.h │ │ ├── types.h │ │ ├── ucontext.h │ │ ├── uio.h │ │ ├── un.h │ │ ├── user.h │ │ ├── utsname.h │ │ ├── vfs.h │ │ ├── vt.h │ │ ├── wait.h │ │ └── xattr.h │ ├── syscall.h │ ├── sysexits.h │ ├── syslog.h │ ├── tar.h │ ├── termios.h │ ├── tgmath.h │ ├── threads.h │ ├── time.h │ ├── uchar.h │ ├── ucontext.h │ ├── ulimit.h │ ├── unistd.h │ ├── utime.h │ ├── utmp.h │ ├── utmpx.h │ ├── values.h │ ├── wait.h │ ├── wchar.h │ ├── wctype.h │ └── wordexp.h ├── ldso │ ├── dlstart.c │ └── dynlink.c ├── src │ ├── aio │ │ ├── aio.c │ │ ├── aio_suspend.c │ │ └── lio_listio.c │ ├── complex │ │ ├── __cexp.c │ │ ├── __cexpf.c │ │ ├── cabs.c │ │ ├── cabsf.c │ │ ├── cabsl.c │ │ ├── cacos.c │ │ ├── cacosf.c │ │ ├── cacosh.c │ │ ├── cacoshf.c │ │ ├── cacoshl.c │ │ ├── cacosl.c │ │ ├── carg.c │ │ ├── cargf.c │ │ ├── cargl.c │ │ ├── casin.c │ │ ├── casinf.c │ │ ├── casinh.c │ │ ├── casinhf.c │ │ ├── casinhl.c │ │ ├── casinl.c │ │ ├── catan.c │ │ ├── catanf.c │ │ ├── catanh.c │ │ ├── catanhf.c │ │ ├── catanhl.c │ │ ├── catanl.c │ │ ├── ccos.c │ │ ├── ccosf.c │ │ ├── ccosh.c │ │ ├── ccoshf.c │ │ ├── ccoshl.c │ │ ├── ccosl.c │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── cexpl.c │ │ ├── cimag.c │ │ ├── cimagf.c │ │ ├── cimagl.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── clogl.c │ │ ├── conj.c │ │ ├── conjf.c │ │ ├── conjl.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── cpowl.c │ │ ├── cproj.c │ │ ├── cprojf.c │ │ ├── cprojl.c │ │ ├── creal.c │ │ ├── crealf.c │ │ ├── creall.c │ │ ├── csin.c │ │ ├── csinf.c │ │ ├── csinh.c │ │ ├── csinhf.c │ │ ├── csinhl.c │ │ ├── csinl.c │ │ ├── csqrt.c │ │ ├── csqrtf.c │ │ ├── csqrtl.c │ │ ├── ctan.c │ │ ├── ctanf.c │ │ ├── ctanh.c │ │ ├── ctanhf.c │ │ ├── ctanhl.c │ │ └── ctanl.c │ ├── conf │ │ ├── confstr.c │ │ ├── fpathconf.c │ │ ├── legacy.c │ │ ├── pathconf.c │ │ └── sysconf.c │ ├── crypt │ │ ├── crypt.c │ │ ├── crypt_blowfish.c │ │ ├── crypt_des.c │ │ ├── crypt_des.h │ │ ├── crypt_md5.c │ │ ├── crypt_r.c │ │ ├── crypt_sha256.c │ │ ├── crypt_sha512.c │ │ └── encrypt.c │ ├── ctype │ │ ├── __ctype_b_loc.c │ │ ├── __ctype_get_mb_cur_max.c │ │ ├── __ctype_tolower_loc.c │ │ ├── __ctype_toupper_loc.c │ │ ├── alpha.h │ │ ├── casemap.h │ │ ├── isalnum.c │ │ ├── isalpha.c │ │ ├── isascii.c │ │ ├── isblank.c │ │ ├── iscntrl.c │ │ ├── isdigit.c │ │ ├── isgraph.c │ │ ├── islower.c │ │ ├── isprint.c │ │ ├── ispunct.c │ │ ├── isspace.c │ │ ├── isupper.c │ │ ├── iswalnum.c │ │ ├── iswalpha.c │ │ ├── iswblank.c │ │ ├── iswcntrl.c │ │ ├── iswctype.c │ │ ├── iswdigit.c │ │ ├── iswgraph.c │ │ ├── iswlower.c │ │ ├── iswprint.c │ │ ├── iswpunct.c │ │ ├── iswspace.c │ │ ├── iswupper.c │ │ ├── iswxdigit.c │ │ ├── isxdigit.c │ │ ├── nonspacing.h │ │ ├── punct.h │ │ ├── toascii.c │ │ ├── tolower.c │ │ ├── toupper.c │ │ ├── towctrans.c │ │ ├── wcswidth.c │ │ ├── wctrans.c │ │ ├── wcwidth.c │ │ └── wide.h │ ├── dirent │ │ ├── __dirent.h │ │ ├── alphasort.c │ │ ├── closedir.c │ │ ├── dirfd.c │ │ ├── fdopendir.c │ │ ├── opendir.c │ │ ├── readdir.c │ │ ├── readdir_r.c │ │ ├── rewinddir.c │ │ ├── scandir.c │ │ ├── seekdir.c │ │ ├── telldir.c │ │ └── versionsort.c │ ├── env │ │ ├── __environ.c │ │ ├── __init_tls.c │ │ ├── __libc_start_main.c │ │ ├── __reset_tls.c │ │ ├── __stack_chk_fail.c │ │ ├── clearenv.c │ │ ├── getenv.c │ │ ├── putenv.c │ │ ├── secure_getenv.c │ │ ├── setenv.c │ │ └── unsetenv.c │ ├── errno │ │ ├── __errno_location.c │ │ ├── __strerror.h │ │ └── strerror.c │ ├── exit │ │ ├── _Exit.c │ │ ├── abort.c │ │ ├── abort_lock.c │ │ ├── arm │ │ │ └── __aeabi_atexit.c │ │ ├── assert.c │ │ ├── at_quick_exit.c │ │ ├── atexit.c │ │ ├── exit.c │ │ └── quick_exit.c │ ├── fcntl │ │ ├── creat.c │ │ ├── fcntl.c │ │ ├── open.c │ │ ├── openat.c │ │ ├── posix_fadvise.c │ │ └── posix_fallocate.c │ ├── fenv │ │ ├── __flt_rounds.c │ │ ├── aarch64 │ │ │ └── fenv.s │ │ ├── arm │ │ │ ├── fenv-hf.S │ │ │ └── fenv.c │ │ ├── fegetexceptflag.c │ │ ├── feholdexcept.c │ │ ├── fenv.c │ │ ├── fesetexceptflag.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── i386 │ │ │ └── fenv.s │ │ ├── m68k │ │ │ └── fenv.c │ │ ├── mips │ │ │ ├── fenv-sf.c │ │ │ └── fenv.S │ │ ├── mips64 │ │ │ ├── fenv-sf.c │ │ │ └── fenv.S │ │ ├── mipsn32 │ │ │ ├── fenv-sf.c │ │ │ └── fenv.S │ │ ├── powerpc │ │ │ ├── fenv-sf.c │ │ │ └── fenv.S │ │ ├── powerpc64 │ │ │ └── fenv.c │ │ ├── riscv64 │ │ │ ├── fenv-sf.c │ │ │ └── fenv.S │ │ ├── s390x │ │ │ └── fenv.c │ │ ├── sh │ │ │ ├── fenv-nofpu.c │ │ │ └── fenv.S │ │ ├── x32 │ │ │ └── fenv.s │ │ └── x86_64 │ │ │ └── fenv.s │ ├── include │ │ ├── arpa │ │ │ └── inet.h │ │ ├── crypt.h │ │ ├── errno.h │ │ ├── features.h │ │ ├── langinfo.h │ │ ├── pthread.h │ │ ├── resolv.h │ │ ├── signal.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ │ ├── auxv.h │ │ │ ├── membarrier.h │ │ │ ├── mman.h │ │ │ ├── sysinfo.h │ │ │ └── time.h │ │ ├── time.h │ │ ├── unistd.h │ │ └── wchar.h │ ├── internal │ │ ├── aio_impl.h │ │ ├── atomic.h │ │ ├── complex_impl.h │ │ ├── defsysinfo.c │ │ ├── dynlink.h │ │ ├── fdpic_crt.h │ │ ├── floatscan.c │ │ ├── floatscan.h │ │ ├── fork_impl.h │ │ ├── futex.h │ │ ├── i386 │ │ │ └── defsysinfo.s │ │ ├── intscan.c │ │ ├── intscan.h │ │ ├── ksigaction.h │ │ ├── libc.c │ │ ├── libc.h │ │ ├── libm.h │ │ ├── locale_impl.h │ │ ├── lock.h │ │ ├── procfdname.c │ │ ├── pthread_impl.h │ │ ├── sh │ │ │ └── __shcall.c │ │ ├── shgetc.c │ │ ├── shgetc.h │ │ ├── stdio_impl.h │ │ ├── syscall.h │ │ ├── syscall_ret.c │ │ ├── vdso.c │ │ └── version.c │ ├── ipc │ │ ├── ftok.c │ │ ├── ipc.h │ │ ├── msgctl.c │ │ ├── msgget.c │ │ ├── msgrcv.c │ │ ├── msgsnd.c │ │ ├── semctl.c │ │ ├── semget.c │ │ ├── semop.c │ │ ├── semtimedop.c │ │ ├── shmat.c │ │ ├── shmctl.c │ │ ├── shmdt.c │ │ └── shmget.c │ ├── ldso │ │ ├── __dlsym.c │ │ ├── aarch64 │ │ │ ├── dlsym.s │ │ │ └── tlsdesc.s │ │ ├── arm │ │ │ ├── dlsym.s │ │ │ ├── dlsym_time64.S │ │ │ ├── find_exidx.c │ │ │ └── tlsdesc.S │ │ ├── dl_iterate_phdr.c │ │ ├── dladdr.c │ │ ├── dlclose.c │ │ ├── dlerror.c │ │ ├── dlinfo.c │ │ ├── dlopen.c │ │ ├── dlsym.c │ │ ├── i386 │ │ │ ├── dlsym.s │ │ │ ├── dlsym_time64.S │ │ │ └── tlsdesc.s │ │ ├── m68k │ │ │ ├── dlsym.s │ │ │ └── dlsym_time64.S │ │ ├── microblaze │ │ │ ├── dlsym.s │ │ │ └── dlsym_time64.S │ │ ├── mips │ │ │ ├── dlsym.s │ │ │ └── dlsym_time64.S │ │ ├── mips64 │ │ │ └── dlsym.s │ │ ├── mipsn32 │ │ │ ├── dlsym.s │ │ │ └── dlsym_time64.S │ │ ├── or1k │ │ │ ├── dlsym.s │ │ │ └── dlsym_time64.S │ │ ├── powerpc │ │ │ ├── dlsym.s │ │ │ └── dlsym_time64.S │ │ ├── powerpc64 │ │ │ └── dlsym.s │ │ ├── riscv64 │ │ │ └── dlsym.s │ │ ├── s390x │ │ │ └── dlsym.s │ │ ├── sh │ │ │ ├── dlsym.s │ │ │ └── dlsym_time64.S │ │ ├── tlsdesc.c │ │ ├── x32 │ │ │ └── dlsym.s │ │ └── x86_64 │ │ │ ├── dlsym.s │ │ │ └── tlsdesc.s │ ├── legacy │ │ ├── cuserid.c │ │ ├── daemon.c │ │ ├── err.c │ │ ├── euidaccess.c │ │ ├── ftw.c │ │ ├── futimes.c │ │ ├── getdtablesize.c │ │ ├── getloadavg.c │ │ ├── getpagesize.c │ │ ├── getpass.c │ │ ├── getusershell.c │ │ ├── isastream.c │ │ ├── lutimes.c │ │ ├── ulimit.c │ │ ├── utmpx.c │ │ └── valloc.c │ ├── linux │ │ ├── adjtime.c │ │ ├── adjtimex.c │ │ ├── arch_prctl.c │ │ ├── brk.c │ │ ├── cache.c │ │ ├── cap.c │ │ ├── chroot.c │ │ ├── clock_adjtime.c │ │ ├── clone.c │ │ ├── copy_file_range.c │ │ ├── epoll.c │ │ ├── eventfd.c │ │ ├── fallocate.c │ │ ├── fanotify.c │ │ ├── flock.c │ │ ├── getdents.c │ │ ├── getrandom.c │ │ ├── gettid.c │ │ ├── inotify.c │ │ ├── ioperm.c │ │ ├── iopl.c │ │ ├── klogctl.c │ │ ├── membarrier.c │ │ ├── memfd_create.c │ │ ├── mlock2.c │ │ ├── module.c │ │ ├── mount.c │ │ ├── name_to_handle_at.c │ │ ├── open_by_handle_at.c │ │ ├── personality.c │ │ ├── pivot_root.c │ │ ├── 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.c │ │ └── xattr.c │ ├── locale │ │ ├── __lctrans.c │ │ ├── __mo_lookup.c │ │ ├── big5.h │ │ ├── bind_textdomain_codeset.c │ │ ├── c_locale.c │ │ ├── catclose.c │ │ ├── catgets.c │ │ ├── catopen.c │ │ ├── codepages.h │ │ ├── dcngettext.c │ │ ├── duplocale.c │ │ ├── freelocale.c │ │ ├── gb18030.h │ │ ├── hkscs.h │ │ ├── iconv.c │ │ ├── iconv_close.c │ │ ├── jis0208.h │ │ ├── ksc.h │ │ ├── langinfo.c │ │ ├── legacychars.h │ │ ├── locale_map.c │ │ ├── localeconv.c │ │ ├── newlocale.c │ │ ├── pleval.c │ │ ├── pleval.h │ │ ├── revjis.h │ │ ├── setlocale.c │ │ ├── strcoll.c │ │ ├── strfmon.c │ │ ├── strtod_l.c │ │ ├── strxfrm.c │ │ ├── textdomain.c │ │ ├── uselocale.c │ │ ├── wcscoll.c │ │ └── wcsxfrm.c │ ├── malloc │ │ ├── calloc.c │ │ ├── free.c │ │ ├── libc_calloc.c │ │ ├── lite_malloc.c │ │ ├── mallocng │ │ │ ├── aligned_alloc.c │ │ │ ├── donate.c │ │ │ ├── free.c │ │ │ ├── glue.h │ │ │ ├── malloc.c │ │ │ ├── malloc_usable_size.c │ │ │ ├── meta.h │ │ │ └── realloc.c │ │ ├── memalign.c │ │ ├── oldmalloc │ │ │ ├── aligned_alloc.c │ │ │ ├── malloc.c │ │ │ ├── malloc_impl.h │ │ │ └── malloc_usable_size.c │ │ ├── posix_memalign.c │ │ ├── realloc.c │ │ ├── reallocarray.c │ │ └── replaced.c │ ├── math │ │ ├── __cos.c │ │ ├── __cosdf.c │ │ ├── __cosl.c │ │ ├── __expo2.c │ │ ├── __expo2f.c │ │ ├── __fpclassify.c │ │ ├── __fpclassifyf.c │ │ ├── __fpclassifyl.c │ │ ├── __invtrigl.c │ │ ├── __invtrigl.h │ │ ├── __math_divzero.c │ │ ├── __math_divzerof.c │ │ ├── __math_invalid.c │ │ ├── __math_invalidf.c │ │ ├── __math_invalidl.c │ │ ├── __math_oflow.c │ │ ├── __math_oflowf.c │ │ ├── __math_uflow.c │ │ ├── __math_uflowf.c │ │ ├── __math_xflow.c │ │ ├── __math_xflowf.c │ │ ├── __polevll.c │ │ ├── __rem_pio2.c │ │ ├── __rem_pio2_large.c │ │ ├── __rem_pio2f.c │ │ ├── __rem_pio2l.c │ │ ├── __signbit.c │ │ ├── __signbitf.c │ │ ├── __signbitl.c │ │ ├── __sin.c │ │ ├── __sindf.c │ │ ├── __sinl.c │ │ ├── __tan.c │ │ ├── __tandf.c │ │ ├── __tanl.c │ │ ├── aarch64 │ │ │ ├── ceil.c │ │ │ ├── ceilf.c │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── floor.c │ │ │ ├── floorf.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmax.c │ │ │ ├── fmaxf.c │ │ │ ├── fmin.c │ │ │ ├── fminf.c │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llround.c │ │ │ ├── llroundf.c │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lround.c │ │ │ ├── lroundf.c │ │ │ ├── nearbyint.c │ │ │ ├── nearbyintf.c │ │ │ ├── rint.c │ │ │ ├── rintf.c │ │ │ ├── round.c │ │ │ ├── roundf.c │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── trunc.c │ │ │ └── truncf.c │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── acoshl.c │ │ ├── acosl.c │ │ ├── arm │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── sqrt.c │ │ │ └── sqrtf.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── asinhl.c │ │ ├── asinl.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atan2f.c │ │ ├── atan2l.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── atanhl.c │ │ ├── atanl.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── cbrtl.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── ceill.c │ │ ├── copysign.c │ │ ├── copysignf.c │ │ ├── copysignl.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── coshl.c │ │ ├── cosl.c │ │ ├── erf.c │ │ ├── erff.c │ │ ├── erfl.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp10f.c │ │ ├── exp10l.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── exp2f_data.c │ │ ├── exp2f_data.h │ │ ├── exp2l.c │ │ ├── exp_data.c │ │ ├── exp_data.h │ │ ├── expf.c │ │ ├── expl.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── expm1l.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── fabsl.c │ │ ├── fdim.c │ │ ├── fdimf.c │ │ ├── fdiml.c │ │ ├── finite.c │ │ ├── finitef.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── floorl.c │ │ ├── fma.c │ │ ├── fmaf.c │ │ ├── fmal.c │ │ ├── fmax.c │ │ ├── fmaxf.c │ │ ├── fmaxl.c │ │ ├── fmin.c │ │ ├── fminf.c │ │ ├── fminl.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── fmodl.c │ │ ├── frexp.c │ │ ├── frexpf.c │ │ ├── frexpl.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── hypotl.c │ │ ├── i386 │ │ │ ├── __invtrigl.s │ │ │ ├── acos.s │ │ │ ├── acosf.s │ │ │ ├── acosl.s │ │ │ ├── asin.s │ │ │ ├── asinf.s │ │ │ ├── asinl.s │ │ │ ├── atan.s │ │ │ ├── atan2.s │ │ │ ├── atan2f.s │ │ │ ├── atan2l.s │ │ │ ├── atanf.s │ │ │ ├── atanl.s │ │ │ ├── ceil.s │ │ │ ├── ceilf.s │ │ │ ├── ceill.s │ │ │ ├── exp2l.s │ │ │ ├── exp_ld.s │ │ │ ├── expl.s │ │ │ ├── expm1l.s │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fabsl.c │ │ │ ├── floor.s │ │ │ ├── floorf.s │ │ │ ├── floorl.s │ │ │ ├── fmod.c │ │ │ ├── fmodf.c │ │ │ ├── fmodl.c │ │ │ ├── hypot.s │ │ │ ├── hypotf.s │ │ │ ├── ldexp.s │ │ │ ├── ldexpf.s │ │ │ ├── ldexpl.s │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llrintl.c │ │ │ ├── log.s │ │ │ ├── log10.s │ │ │ ├── log10f.s │ │ │ ├── log10l.s │ │ │ ├── log1p.s │ │ │ ├── log1pf.s │ │ │ ├── log1pl.s │ │ │ ├── log2.s │ │ │ ├── log2f.s │ │ │ ├── log2l.s │ │ │ ├── logf.s │ │ │ ├── logl.s │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lrintl.c │ │ │ ├── remainder.c │ │ │ ├── remainderf.c │ │ │ ├── remainderl.c │ │ │ ├── remquo.s │ │ │ ├── remquof.s │ │ │ ├── remquol.s │ │ │ ├── rint.c │ │ │ ├── rintf.c │ │ │ ├── rintl.c │ │ │ ├── scalbln.s │ │ │ ├── scalblnf.s │ │ │ ├── scalblnl.s │ │ │ ├── scalbn.s │ │ │ ├── scalbnf.s │ │ │ ├── scalbnl.s │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── sqrtl.c │ │ │ ├── trunc.s │ │ │ ├── truncf.s │ │ │ └── truncl.s │ │ ├── ilogb.c │ │ ├── ilogbf.c │ │ ├── ilogbl.c │ │ ├── j0.c │ │ ├── j0f.c │ │ ├── j1.c │ │ ├── j1f.c │ │ ├── jn.c │ │ ├── jnf.c │ │ ├── ldexp.c │ │ ├── ldexpf.c │ │ ├── ldexpl.c │ │ ├── lgamma.c │ │ ├── lgamma_r.c │ │ ├── lgammaf.c │ │ ├── lgammaf_r.c │ │ ├── lgammal.c │ │ ├── llrint.c │ │ ├── llrintf.c │ │ ├── llrintl.c │ │ ├── llround.c │ │ ├── llroundf.c │ │ ├── llroundl.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log10l.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log1pl.c │ │ ├── log2.c │ │ ├── log2_data.c │ │ ├── log2_data.h │ │ ├── log2f.c │ │ ├── log2f_data.c │ │ ├── log2f_data.h │ │ ├── log2l.c │ │ ├── log_data.c │ │ ├── log_data.h │ │ ├── logb.c │ │ ├── logbf.c │ │ ├── logbl.c │ │ ├── logf.c │ │ ├── logf_data.c │ │ ├── logf_data.h │ │ ├── logl.c │ │ ├── lrint.c │ │ ├── lrintf.c │ │ ├── lrintl.c │ │ ├── lround.c │ │ ├── lroundf.c │ │ ├── lroundl.c │ │ ├── m68k │ │ │ └── sqrtl.c │ │ ├── mips │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── sqrt.c │ │ │ └── sqrtf.c │ │ ├── modf.c │ │ ├── modff.c │ │ ├── modfl.c │ │ ├── nan.c │ │ ├── nanf.c │ │ ├── nanl.c │ │ ├── nearbyint.c │ │ ├── nearbyintf.c │ │ ├── nearbyintl.c │ │ ├── nextafter.c │ │ ├── nextafterf.c │ │ ├── nextafterl.c │ │ ├── nexttoward.c │ │ ├── nexttowardf.c │ │ ├── nexttowardl.c │ │ ├── pow.c │ │ ├── pow_data.c │ │ ├── pow_data.h │ │ ├── powerpc │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── sqrt.c │ │ │ └── sqrtf.c │ │ ├── powerpc64 │ │ │ ├── ceil.c │ │ │ ├── ceilf.c │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── floor.c │ │ │ ├── floorf.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmax.c │ │ │ ├── fmaxf.c │ │ │ ├── fmin.c │ │ │ ├── fminf.c │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lround.c │ │ │ ├── lroundf.c │ │ │ ├── round.c │ │ │ ├── roundf.c │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── trunc.c │ │ │ └── truncf.c │ │ ├── powf.c │ │ ├── powf_data.c │ │ ├── powf_data.h │ │ ├── powl.c │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── remainderl.c │ │ ├── remquo.c │ │ ├── remquof.c │ │ ├── remquol.c │ │ ├── rint.c │ │ ├── rintf.c │ │ ├── rintl.c │ │ ├── riscv64 │ │ │ ├── copysign.c │ │ │ ├── copysignf.c │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmax.c │ │ │ ├── fmaxf.c │ │ │ ├── fmin.c │ │ │ ├── fminf.c │ │ │ ├── sqrt.c │ │ │ └── sqrtf.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── roundl.c │ │ ├── s390x │ │ │ ├── ceil.c │ │ │ ├── ceilf.c │ │ │ ├── ceill.c │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fabsl.c │ │ │ ├── floor.c │ │ │ ├── floorf.c │ │ │ ├── floorl.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── nearbyint.c │ │ │ ├── nearbyintf.c │ │ │ ├── nearbyintl.c │ │ │ ├── rint.c │ │ │ ├── rintf.c │ │ │ ├── rintl.c │ │ │ ├── round.c │ │ │ ├── roundf.c │ │ │ ├── roundl.c │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── sqrtl.c │ │ │ ├── trunc.c │ │ │ ├── truncf.c │ │ │ └── truncl.c │ │ ├── scalb.c │ │ ├── scalbf.c │ │ ├── scalbln.c │ │ ├── scalblnf.c │ │ ├── scalblnl.c │ │ ├── scalbn.c │ │ ├── scalbnf.c │ │ ├── scalbnl.c │ │ ├── signgam.c │ │ ├── significand.c │ │ ├── significandf.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sincosf.c │ │ ├── sincosl.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sinhl.c │ │ ├── sinl.c │ │ ├── sqrt.c │ │ ├── sqrt_data.c │ │ ├── sqrt_data.h │ │ ├── sqrtf.c │ │ ├── sqrtl.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── tanhl.c │ │ ├── tanl.c │ │ ├── tgamma.c │ │ ├── tgammaf.c │ │ ├── tgammal.c │ │ ├── trunc.c │ │ ├── truncf.c │ │ ├── truncl.c │ │ ├── x32 │ │ │ ├── __invtrigl.s │ │ │ ├── acosl.s │ │ │ ├── asinl.s │ │ │ ├── atan2l.s │ │ │ ├── atanl.s │ │ │ ├── ceill.s │ │ │ ├── exp2l.s │ │ │ ├── expl.s │ │ │ ├── expm1l.s │ │ │ ├── fabs.s │ │ │ ├── fabsf.s │ │ │ ├── fabsl.s │ │ │ ├── floorl.s │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmodl.s │ │ │ ├── llrint.s │ │ │ ├── llrintf.s │ │ │ ├── llrintl.s │ │ │ ├── log10l.s │ │ │ ├── log1pl.s │ │ │ ├── log2l.s │ │ │ ├── logl.s │ │ │ ├── lrint.s │ │ │ ├── lrintf.s │ │ │ ├── lrintl.s │ │ │ ├── remainderl.s │ │ │ ├── rintl.s │ │ │ ├── sqrt.s │ │ │ ├── sqrtf.s │ │ │ ├── sqrtl.s │ │ │ └── truncl.s │ │ └── x86_64 │ │ │ ├── __invtrigl.s │ │ │ ├── acosl.s │ │ │ ├── asinl.s │ │ │ ├── atan2l.s │ │ │ ├── atanl.s │ │ │ ├── ceill.s │ │ │ ├── exp2l.s │ │ │ ├── expl.s │ │ │ ├── expm1l.s │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fabsl.c │ │ │ ├── floorl.s │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmodl.c │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llrintl.c │ │ │ ├── log10l.s │ │ │ ├── log1pl.s │ │ │ ├── log2l.s │ │ │ ├── logl.s │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lrintl.c │ │ │ ├── remainderl.c │ │ │ ├── remquol.c │ │ │ ├── rintl.c │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── sqrtl.c │ │ │ └── truncl.s │ ├── misc │ │ ├── a64l.c │ │ ├── basename.c │ │ ├── dirname.c │ │ ├── ffs.c │ │ ├── ffsl.c │ │ ├── ffsll.c │ │ ├── fmtmsg.c │ │ ├── forkpty.c │ │ ├── get_current_dir_name.c │ │ ├── getauxval.c │ │ ├── getdomainname.c │ │ ├── getentropy.c │ │ ├── gethostid.c │ │ ├── getopt.c │ │ ├── getopt_long.c │ │ ├── getpriority.c │ │ ├── getresgid.c │ │ ├── getresuid.c │ │ ├── getrlimit.c │ │ ├── getrusage.c │ │ ├── getsubopt.c │ │ ├── initgroups.c │ │ ├── ioctl.c │ │ ├── issetugid.c │ │ ├── lockf.c │ │ ├── login_tty.c │ │ ├── mntent.c │ │ ├── nftw.c │ │ ├── openpty.c │ │ ├── ptsname.c │ │ ├── pty.c │ │ ├── realpath.c │ │ ├── setdomainname.c │ │ ├── setpriority.c │ │ ├── setrlimit.c │ │ ├── syscall.c │ │ ├── syslog.c │ │ ├── uname.c │ │ └── wordexp.c │ ├── mman │ │ ├── madvise.c │ │ ├── mincore.c │ │ ├── mlock.c │ │ ├── mlockall.c │ │ ├── mmap.c │ │ ├── mprotect.c │ │ ├── mremap.c │ │ ├── msync.c │ │ ├── munlock.c │ │ ├── munlockall.c │ │ ├── munmap.c │ │ ├── posix_madvise.c │ │ └── shm_open.c │ ├── mq │ │ ├── mq_close.c │ │ ├── mq_getattr.c │ │ ├── mq_notify.c │ │ ├── mq_open.c │ │ ├── mq_receive.c │ │ ├── mq_send.c │ │ ├── mq_setattr.c │ │ ├── mq_timedreceive.c │ │ ├── mq_timedsend.c │ │ └── mq_unlink.c │ ├── multibyte │ │ ├── btowc.c │ │ ├── c16rtomb.c │ │ ├── c32rtomb.c │ │ ├── internal.c │ │ ├── internal.h │ │ ├── mblen.c │ │ ├── mbrlen.c │ │ ├── mbrtoc16.c │ │ ├── mbrtoc32.c │ │ ├── mbrtowc.c │ │ ├── mbsinit.c │ │ ├── mbsnrtowcs.c │ │ ├── mbsrtowcs.c │ │ ├── mbstowcs.c │ │ ├── mbtowc.c │ │ ├── wcrtomb.c │ │ ├── wcsnrtombs.c │ │ ├── wcsrtombs.c │ │ ├── wcstombs.c │ │ ├── wctob.c │ │ └── wctomb.c │ ├── network │ │ ├── accept.c │ │ ├── accept4.c │ │ ├── bind.c │ │ ├── connect.c │ │ ├── dn_comp.c │ │ ├── dn_expand.c │ │ ├── dn_skipname.c │ │ ├── dns_parse.c │ │ ├── ent.c │ │ ├── ether.c │ │ ├── freeaddrinfo.c │ │ ├── gai_strerror.c │ │ ├── getaddrinfo.c │ │ ├── gethostbyaddr.c │ │ ├── gethostbyaddr_r.c │ │ ├── gethostbyname.c │ │ ├── gethostbyname2.c │ │ ├── gethostbyname2_r.c │ │ ├── gethostbyname_r.c │ │ ├── getifaddrs.c │ │ ├── getnameinfo.c │ │ ├── getpeername.c │ │ ├── getservbyname.c │ │ ├── getservbyname_r.c │ │ ├── getservbyport.c │ │ ├── getservbyport_r.c │ │ ├── getsockname.c │ │ ├── getsockopt.c │ │ ├── h_errno.c │ │ ├── herror.c │ │ ├── hstrerror.c │ │ ├── htonl.c │ │ ├── htons.c │ │ ├── if_freenameindex.c │ │ ├── if_indextoname.c │ │ ├── if_nameindex.c │ │ ├── if_nametoindex.c │ │ ├── in6addr_any.c │ │ ├── in6addr_loopback.c │ │ ├── inet_addr.c │ │ ├── inet_aton.c │ │ ├── inet_legacy.c │ │ ├── inet_ntoa.c │ │ ├── inet_ntop.c │ │ ├── inet_pton.c │ │ ├── listen.c │ │ ├── lookup.h │ │ ├── lookup_ipliteral.c │ │ ├── lookup_name.c │ │ ├── lookup_serv.c │ │ ├── netlink.c │ │ ├── netlink.h │ │ ├── netname.c │ │ ├── ns_parse.c │ │ ├── ntohl.c │ │ ├── ntohs.c │ │ ├── proto.c │ │ ├── recv.c │ │ ├── recvfrom.c │ │ ├── recvmmsg.c │ │ ├── recvmsg.c │ │ ├── res_init.c │ │ ├── res_mkquery.c │ │ ├── res_msend.c │ │ ├── res_query.c │ │ ├── res_querydomain.c │ │ ├── res_send.c │ │ ├── res_state.c │ │ ├── resolvconf.c │ │ ├── send.c │ │ ├── sendmmsg.c │ │ ├── sendmsg.c │ │ ├── sendto.c │ │ ├── serv.c │ │ ├── setsockopt.c │ │ ├── shutdown.c │ │ ├── sockatmark.c │ │ ├── socket.c │ │ └── socketpair.c │ ├── passwd │ │ ├── fgetgrent.c │ │ ├── fgetpwent.c │ │ ├── fgetspent.c │ │ ├── getgr_a.c │ │ ├── getgr_r.c │ │ ├── getgrent.c │ │ ├── getgrent_a.c │ │ ├── getgrouplist.c │ │ ├── getpw_a.c │ │ ├── getpw_r.c │ │ ├── getpwent.c │ │ ├── getpwent_a.c │ │ ├── getspent.c │ │ ├── getspnam.c │ │ ├── getspnam_r.c │ │ ├── lckpwdf.c │ │ ├── nscd.h │ │ ├── nscd_query.c │ │ ├── putgrent.c │ │ ├── putpwent.c │ │ ├── putspent.c │ │ └── pwf.h │ ├── prng │ │ ├── __rand48_step.c │ │ ├── __seed48.c │ │ ├── drand48.c │ │ ├── lcong48.c │ │ ├── lrand48.c │ │ ├── mrand48.c │ │ ├── rand.c │ │ ├── rand48.h │ │ ├── rand_r.c │ │ ├── random.c │ │ ├── seed48.c │ │ └── srand48.c │ ├── process │ │ ├── _Fork.c │ │ ├── arm │ │ │ └── vfork.s │ │ ├── execl.c │ │ ├── execle.c │ │ ├── execlp.c │ │ ├── execv.c │ │ ├── execve.c │ │ ├── execvp.c │ │ ├── fdop.h │ │ ├── fexecve.c │ │ ├── fork.c │ │ ├── i386 │ │ │ └── vfork.s │ │ ├── posix_spawn.c │ │ ├── posix_spawn_file_actions_addchdir.c │ │ ├── posix_spawn_file_actions_addclose.c │ │ ├── posix_spawn_file_actions_adddup2.c │ │ ├── posix_spawn_file_actions_addfchdir.c │ │ ├── posix_spawn_file_actions_addopen.c │ │ ├── posix_spawn_file_actions_destroy.c │ │ ├── posix_spawn_file_actions_init.c │ │ ├── posix_spawnattr_destroy.c │ │ ├── posix_spawnattr_getflags.c │ │ ├── posix_spawnattr_getpgroup.c │ │ ├── posix_spawnattr_getsigdefault.c │ │ ├── posix_spawnattr_getsigmask.c │ │ ├── posix_spawnattr_init.c │ │ ├── posix_spawnattr_sched.c │ │ ├── posix_spawnattr_setflags.c │ │ ├── posix_spawnattr_setpgroup.c │ │ ├── posix_spawnattr_setsigdefault.c │ │ ├── posix_spawnattr_setsigmask.c │ │ ├── posix_spawnp.c │ │ ├── s390x │ │ │ └── vfork.s │ │ ├── sh │ │ │ └── vfork.s │ │ ├── system.c │ │ ├── vfork.c │ │ ├── wait.c │ │ ├── waitid.c │ │ ├── waitpid.c │ │ ├── x32 │ │ │ └── vfork.s │ │ └── x86_64 │ │ │ └── vfork.s │ ├── regex │ │ ├── fnmatch.c │ │ ├── glob.c │ │ ├── regcomp.c │ │ ├── regerror.c │ │ ├── regexec.c │ │ ├── tre-mem.c │ │ └── tre.h │ ├── sched │ │ ├── affinity.c │ │ ├── sched_cpucount.c │ │ ├── sched_get_priority_max.c │ │ ├── sched_getcpu.c │ │ ├── sched_getparam.c │ │ ├── sched_getscheduler.c │ │ ├── sched_rr_get_interval.c │ │ ├── sched_setparam.c │ │ ├── sched_setscheduler.c │ │ └── sched_yield.c │ ├── search │ │ ├── hsearch.c │ │ ├── insque.c │ │ ├── lsearch.c │ │ ├── tdelete.c │ │ ├── tdestroy.c │ │ ├── tfind.c │ │ ├── tsearch.c │ │ ├── tsearch.h │ │ └── twalk.c │ ├── select │ │ ├── poll.c │ │ ├── pselect.c │ │ └── select.c │ ├── setjmp │ │ ├── aarch64 │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ ├── arm │ │ │ ├── longjmp.S │ │ │ └── setjmp.S │ │ ├── i386 │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ ├── longjmp.c │ │ ├── m68k │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ ├── microblaze │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ ├── mips │ │ │ ├── longjmp.S │ │ │ └── setjmp.S │ │ ├── mips64 │ │ │ ├── longjmp.S │ │ │ └── setjmp.S │ │ ├── mipsn32 │ │ │ ├── longjmp.S │ │ │ └── setjmp.S │ │ ├── or1k │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ ├── powerpc │ │ │ ├── longjmp.S │ │ │ └── setjmp.S │ │ ├── powerpc64 │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ ├── riscv64 │ │ │ ├── longjmp.S │ │ │ └── setjmp.S │ │ ├── s390x │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ ├── setjmp.c │ │ ├── sh │ │ │ ├── longjmp.S │ │ │ └── setjmp.S │ │ ├── x32 │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ └── x86_64 │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ ├── signal │ │ ├── aarch64 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── arm │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── block.c │ │ ├── getitimer.c │ │ ├── i386 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── kill.c │ │ ├── killpg.c │ │ ├── m68k │ │ │ └── sigsetjmp.s │ │ ├── microblaze │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── mips │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── mips64 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── mipsn32 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── or1k │ │ │ └── sigsetjmp.s │ │ ├── powerpc │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── powerpc64 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── psiginfo.c │ │ ├── psignal.c │ │ ├── raise.c │ │ ├── restore.c │ │ ├── riscv64 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── s390x │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── setitimer.c │ │ ├── sh │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── sigaction.c │ │ ├── sigaddset.c │ │ ├── sigaltstack.c │ │ ├── sigandset.c │ │ ├── sigdelset.c │ │ ├── sigemptyset.c │ │ ├── sigfillset.c │ │ ├── sighold.c │ │ ├── sigignore.c │ │ ├── siginterrupt.c │ │ ├── sigisemptyset.c │ │ ├── sigismember.c │ │ ├── siglongjmp.c │ │ ├── signal.c │ │ ├── sigorset.c │ │ ├── sigpause.c │ │ ├── sigpending.c │ │ ├── sigprocmask.c │ │ ├── sigqueue.c │ │ ├── sigrelse.c │ │ ├── sigrtmax.c │ │ ├── sigrtmin.c │ │ ├── sigset.c │ │ ├── sigsetjmp.c │ │ ├── sigsetjmp_tail.c │ │ ├── sigsuspend.c │ │ ├── sigtimedwait.c │ │ ├── sigwait.c │ │ ├── sigwaitinfo.c │ │ ├── x32 │ │ │ ├── getitimer.c │ │ │ ├── restore.s │ │ │ ├── setitimer.c │ │ │ └── sigsetjmp.s │ │ └── x86_64 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ ├── stat │ │ ├── __xstat.c │ │ ├── chmod.c │ │ ├── fchmod.c │ │ ├── fchmodat.c │ │ ├── fstat.c │ │ ├── fstatat.c │ │ ├── futimens.c │ │ ├── futimesat.c │ │ ├── lchmod.c │ │ ├── lstat.c │ │ ├── mkdir.c │ │ ├── mkdirat.c │ │ ├── mkfifo.c │ │ ├── mkfifoat.c │ │ ├── mknod.c │ │ ├── mknodat.c │ │ ├── stat.c │ │ ├── statvfs.c │ │ ├── umask.c │ │ └── utimensat.c │ ├── stdio │ │ ├── __fclose_ca.c │ │ ├── __fdopen.c │ │ ├── __fmodeflags.c │ │ ├── __fopen_rb_ca.c │ │ ├── __lockfile.c │ │ ├── __overflow.c │ │ ├── __stdio_close.c │ │ ├── __stdio_exit.c │ │ ├── __stdio_read.c │ │ ├── __stdio_seek.c │ │ ├── __stdio_write.c │ │ ├── __stdout_write.c │ │ ├── __toread.c │ │ ├── __towrite.c │ │ ├── __uflow.c │ │ ├── asprintf.c │ │ ├── clearerr.c │ │ ├── dprintf.c │ │ ├── ext.c │ │ ├── ext2.c │ │ ├── fclose.c │ │ ├── feof.c │ │ ├── ferror.c │ │ ├── fflush.c │ │ ├── fgetc.c │ │ ├── fgetln.c │ │ ├── fgetpos.c │ │ ├── fgets.c │ │ ├── fgetwc.c │ │ ├── fgetws.c │ │ ├── fileno.c │ │ ├── flockfile.c │ │ ├── fmemopen.c │ │ ├── fopen.c │ │ ├── fopencookie.c │ │ ├── fprintf.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fputwc.c │ │ ├── fputws.c │ │ ├── fread.c │ │ ├── freopen.c │ │ ├── fscanf.c │ │ ├── fseek.c │ │ ├── fsetpos.c │ │ ├── ftell.c │ │ ├── ftrylockfile.c │ │ ├── funlockfile.c │ │ ├── fwide.c │ │ ├── fwprintf.c │ │ ├── fwrite.c │ │ ├── fwscanf.c │ │ ├── getc.c │ │ ├── getc.h │ │ ├── getc_unlocked.c │ │ ├── getchar.c │ │ ├── getchar_unlocked.c │ │ ├── getdelim.c │ │ ├── getline.c │ │ ├── gets.c │ │ ├── getw.c │ │ ├── getwc.c │ │ ├── getwchar.c │ │ ├── ofl.c │ │ ├── ofl_add.c │ │ ├── open_memstream.c │ │ ├── open_wmemstream.c │ │ ├── pclose.c │ │ ├── perror.c │ │ ├── popen.c │ │ ├── printf.c │ │ ├── putc.c │ │ ├── putc.h │ │ ├── putc_unlocked.c │ │ ├── putchar.c │ │ ├── putchar_unlocked.c │ │ ├── puts.c │ │ ├── putw.c │ │ ├── putwc.c │ │ ├── putwchar.c │ │ ├── remove.c │ │ ├── rename.c │ │ ├── rewind.c │ │ ├── scanf.c │ │ ├── setbuf.c │ │ ├── setbuffer.c │ │ ├── setlinebuf.c │ │ ├── setvbuf.c │ │ ├── snprintf.c │ │ ├── sprintf.c │ │ ├── sscanf.c │ │ ├── stderr.c │ │ ├── stdin.c │ │ ├── stdout.c │ │ ├── swprintf.c │ │ ├── swscanf.c │ │ ├── tempnam.c │ │ ├── tmpfile.c │ │ ├── tmpnam.c │ │ ├── ungetc.c │ │ ├── ungetwc.c │ │ ├── vasprintf.c │ │ ├── vdprintf.c │ │ ├── vfprintf.c │ │ ├── vfscanf.c │ │ ├── vfwprintf.c │ │ ├── vfwscanf.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── vsnprintf.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── vswprintf.c │ │ ├── vswscanf.c │ │ ├── vwprintf.c │ │ ├── vwscanf.c │ │ ├── wprintf.c │ │ └── wscanf.c │ ├── stdlib │ │ ├── abs.c │ │ ├── atof.c │ │ ├── atoi.c │ │ ├── atol.c │ │ ├── atoll.c │ │ ├── bsearch.c │ │ ├── div.c │ │ ├── ecvt.c │ │ ├── fcvt.c │ │ ├── gcvt.c │ │ ├── imaxabs.c │ │ ├── imaxdiv.c │ │ ├── labs.c │ │ ├── ldiv.c │ │ ├── llabs.c │ │ ├── lldiv.c │ │ ├── qsort.c │ │ ├── qsort_nr.c │ │ ├── strtod.c │ │ ├── strtol.c │ │ ├── wcstod.c │ │ └── wcstol.c │ ├── string │ │ ├── aarch64 │ │ │ ├── memcpy.S │ │ │ └── memset.S │ │ ├── arm │ │ │ ├── __aeabi_memcpy.s │ │ │ ├── __aeabi_memset.s │ │ │ └── memcpy.S │ │ ├── bcmp.c │ │ ├── bcopy.c │ │ ├── bzero.c │ │ ├── explicit_bzero.c │ │ ├── i386 │ │ │ ├── memcpy.s │ │ │ ├── memmove.s │ │ │ └── memset.s │ │ ├── index.c │ │ ├── memccpy.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmem.c │ │ ├── memmove.c │ │ ├── mempcpy.c │ │ ├── memrchr.c │ │ ├── memset.c │ │ ├── rindex.c │ │ ├── stpcpy.c │ │ ├── stpncpy.c │ │ ├── strcasecmp.c │ │ ├── strcasestr.c │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strchrnul.c │ │ ├── strcmp.c │ │ ├── strcpy.c │ │ ├── strcspn.c │ │ ├── strdup.c │ │ ├── strerror_r.c │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strlen.c │ │ ├── strncasecmp.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strndup.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strsep.c │ │ ├── strsignal.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtok.c │ │ ├── strtok_r.c │ │ ├── strverscmp.c │ │ ├── swab.c │ │ ├── wcpcpy.c │ │ ├── wcpncpy.c │ │ ├── wcscasecmp.c │ │ ├── wcscasecmp_l.c │ │ ├── wcscat.c │ │ ├── wcschr.c │ │ ├── wcscmp.c │ │ ├── wcscpy.c │ │ ├── wcscspn.c │ │ ├── wcsdup.c │ │ ├── wcslen.c │ │ ├── wcsncasecmp.c │ │ ├── wcsncasecmp_l.c │ │ ├── wcsncat.c │ │ ├── wcsncmp.c │ │ ├── wcsncpy.c │ │ ├── wcsnlen.c │ │ ├── wcspbrk.c │ │ ├── wcsrchr.c │ │ ├── wcsspn.c │ │ ├── wcsstr.c │ │ ├── wcstok.c │ │ ├── wcswcs.c │ │ ├── wmemchr.c │ │ ├── wmemcmp.c │ │ ├── wmemcpy.c │ │ ├── wmemmove.c │ │ ├── wmemset.c │ │ └── x86_64 │ │ │ ├── memcpy.s │ │ │ ├── memmove.s │ │ │ └── memset.s │ ├── temp │ │ ├── __randname.c │ │ ├── mkdtemp.c │ │ ├── mkostemp.c │ │ ├── mkostemps.c │ │ ├── mkstemp.c │ │ ├── mkstemps.c │ │ └── mktemp.c │ ├── termios │ │ ├── cfgetospeed.c │ │ ├── cfmakeraw.c │ │ ├── cfsetospeed.c │ │ ├── tcdrain.c │ │ ├── tcflow.c │ │ ├── tcflush.c │ │ ├── tcgetattr.c │ │ ├── tcgetsid.c │ │ ├── tcgetwinsize.c │ │ ├── tcsendbreak.c │ │ ├── tcsetattr.c │ │ └── tcsetwinsize.c │ ├── thread │ │ ├── __lock.c │ │ ├── __set_thread_area.c │ │ ├── __syscall_cp.c │ │ ├── __timedwait.c │ │ ├── __tls_get_addr.c │ │ ├── __unmapself.c │ │ ├── __wait.c │ │ ├── aarch64 │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── arm │ │ │ ├── __aeabi_read_tp.s │ │ │ ├── __set_thread_area.c │ │ │ ├── __unmapself.s │ │ │ ├── atomics.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── call_once.c │ │ ├── clone.c │ │ ├── cnd_broadcast.c │ │ ├── cnd_destroy.c │ │ ├── cnd_init.c │ │ ├── cnd_signal.c │ │ ├── cnd_timedwait.c │ │ ├── cnd_wait.c │ │ ├── default_attr.c │ │ ├── i386 │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ ├── syscall_cp.s │ │ │ └── tls.s │ │ ├── lock_ptc.c │ │ ├── m68k │ │ │ ├── __m68k_read_tp.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── microblaze │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── mips │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── mips64 │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── mipsn32 │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── mtx_destroy.c │ │ ├── mtx_init.c │ │ ├── mtx_lock.c │ │ ├── mtx_timedlock.c │ │ ├── mtx_trylock.c │ │ ├── mtx_unlock.c │ │ ├── or1k │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── powerpc │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── powerpc64 │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── pthread_atfork.c │ │ ├── pthread_attr_destroy.c │ │ ├── pthread_attr_get.c │ │ ├── pthread_attr_init.c │ │ ├── pthread_attr_setdetachstate.c │ │ ├── pthread_attr_setguardsize.c │ │ ├── pthread_attr_setinheritsched.c │ │ ├── pthread_attr_setschedparam.c │ │ ├── pthread_attr_setschedpolicy.c │ │ ├── pthread_attr_setscope.c │ │ ├── pthread_attr_setstack.c │ │ ├── pthread_attr_setstacksize.c │ │ ├── pthread_barrier_destroy.c │ │ ├── pthread_barrier_init.c │ │ ├── pthread_barrier_wait.c │ │ ├── pthread_barrierattr_destroy.c │ │ ├── pthread_barrierattr_init.c │ │ ├── pthread_barrierattr_setpshared.c │ │ ├── pthread_cancel.c │ │ ├── pthread_cleanup_push.c │ │ ├── pthread_cond_broadcast.c │ │ ├── pthread_cond_destroy.c │ │ ├── pthread_cond_init.c │ │ ├── pthread_cond_signal.c │ │ ├── pthread_cond_timedwait.c │ │ ├── pthread_cond_wait.c │ │ ├── pthread_condattr_destroy.c │ │ ├── pthread_condattr_init.c │ │ ├── pthread_condattr_setclock.c │ │ ├── pthread_condattr_setpshared.c │ │ ├── pthread_create.c │ │ ├── pthread_detach.c │ │ ├── pthread_equal.c │ │ ├── pthread_getattr_np.c │ │ ├── pthread_getconcurrency.c │ │ ├── pthread_getcpuclockid.c │ │ ├── pthread_getname_np.c │ │ ├── pthread_getschedparam.c │ │ ├── pthread_getspecific.c │ │ ├── pthread_join.c │ │ ├── pthread_key_create.c │ │ ├── pthread_kill.c │ │ ├── pthread_mutex_consistent.c │ │ ├── pthread_mutex_destroy.c │ │ ├── pthread_mutex_getprioceiling.c │ │ ├── pthread_mutex_init.c │ │ ├── pthread_mutex_lock.c │ │ ├── pthread_mutex_setprioceiling.c │ │ ├── pthread_mutex_timedlock.c │ │ ├── pthread_mutex_trylock.c │ │ ├── pthread_mutex_unlock.c │ │ ├── pthread_mutexattr_destroy.c │ │ ├── pthread_mutexattr_init.c │ │ ├── pthread_mutexattr_setprotocol.c │ │ ├── pthread_mutexattr_setpshared.c │ │ ├── pthread_mutexattr_setrobust.c │ │ ├── pthread_mutexattr_settype.c │ │ ├── pthread_once.c │ │ ├── pthread_rwlock_destroy.c │ │ ├── pthread_rwlock_init.c │ │ ├── pthread_rwlock_rdlock.c │ │ ├── pthread_rwlock_timedrdlock.c │ │ ├── pthread_rwlock_timedwrlock.c │ │ ├── pthread_rwlock_tryrdlock.c │ │ ├── pthread_rwlock_trywrlock.c │ │ ├── pthread_rwlock_unlock.c │ │ ├── pthread_rwlock_wrlock.c │ │ ├── pthread_rwlockattr_destroy.c │ │ ├── pthread_rwlockattr_init.c │ │ ├── pthread_rwlockattr_setpshared.c │ │ ├── pthread_self.c │ │ ├── pthread_setattr_default_np.c │ │ ├── pthread_setcancelstate.c │ │ ├── pthread_setcanceltype.c │ │ ├── pthread_setconcurrency.c │ │ ├── pthread_setname_np.c │ │ ├── pthread_setschedparam.c │ │ ├── pthread_setschedprio.c │ │ ├── pthread_setspecific.c │ │ ├── pthread_sigmask.c │ │ ├── pthread_spin_destroy.c │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_lock.c │ │ ├── pthread_spin_trylock.c │ │ ├── pthread_spin_unlock.c │ │ ├── pthread_testcancel.c │ │ ├── riscv64 │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── s390x │ │ │ ├── __set_thread_area.s │ │ │ ├── __tls_get_offset.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── sem_destroy.c │ │ ├── sem_getvalue.c │ │ ├── sem_init.c │ │ ├── sem_open.c │ │ ├── sem_post.c │ │ ├── sem_timedwait.c │ │ ├── sem_trywait.c │ │ ├── sem_unlink.c │ │ ├── sem_wait.c │ │ ├── sh │ │ │ ├── __set_thread_area.c │ │ │ ├── __unmapself.c │ │ │ ├── __unmapself_mmu.s │ │ │ ├── atomics.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── synccall.c │ │ ├── syscall_cp.c │ │ ├── thrd_create.c │ │ ├── thrd_exit.c │ │ ├── thrd_join.c │ │ ├── thrd_sleep.c │ │ ├── thrd_yield.c │ │ ├── tls.c │ │ ├── tss_create.c │ │ ├── tss_delete.c │ │ ├── tss_set.c │ │ ├── vmlock.c │ │ ├── x32 │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ └── x86_64 │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ ├── time │ │ ├── __map_file.c │ │ ├── __month_to_secs.c │ │ ├── __secs_to_tm.c │ │ ├── __tm_to_secs.c │ │ ├── __tz.c │ │ ├── __year_to_secs.c │ │ ├── asctime.c │ │ ├── asctime_r.c │ │ ├── clock.c │ │ ├── clock_getcpuclockid.c │ │ ├── clock_getres.c │ │ ├── clock_gettime.c │ │ ├── clock_nanosleep.c │ │ ├── clock_settime.c │ │ ├── ctime.c │ │ ├── ctime_r.c │ │ ├── difftime.c │ │ ├── ftime.c │ │ ├── getdate.c │ │ ├── gettimeofday.c │ │ ├── gmtime.c │ │ ├── gmtime_r.c │ │ ├── localtime.c │ │ ├── localtime_r.c │ │ ├── mktime.c │ │ ├── nanosleep.c │ │ ├── strftime.c │ │ ├── strptime.c │ │ ├── time.c │ │ ├── time_impl.h │ │ ├── timegm.c │ │ ├── timer_create.c │ │ ├── timer_delete.c │ │ ├── timer_getoverrun.c │ │ ├── timer_gettime.c │ │ ├── timer_settime.c │ │ ├── times.c │ │ ├── timespec_get.c │ │ ├── utime.c │ │ └── wcsftime.c │ └── unistd │ │ ├── _exit.c │ │ ├── access.c │ │ ├── acct.c │ │ ├── alarm.c │ │ ├── chdir.c │ │ ├── chown.c │ │ ├── close.c │ │ ├── ctermid.c │ │ ├── dup.c │ │ ├── dup2.c │ │ ├── dup3.c │ │ ├── faccessat.c │ │ ├── fchdir.c │ │ ├── fchown.c │ │ ├── fchownat.c │ │ ├── fdatasync.c │ │ ├── fsync.c │ │ ├── ftruncate.c │ │ ├── getcwd.c │ │ ├── getegid.c │ │ ├── geteuid.c │ │ ├── getgid.c │ │ ├── getgroups.c │ │ ├── gethostname.c │ │ ├── getlogin.c │ │ ├── getlogin_r.c │ │ ├── getpgid.c │ │ ├── getpgrp.c │ │ ├── getpid.c │ │ ├── getppid.c │ │ ├── getsid.c │ │ ├── getuid.c │ │ ├── isatty.c │ │ ├── lchown.c │ │ ├── link.c │ │ ├── linkat.c │ │ ├── lseek.c │ │ ├── mips │ │ └── pipe.s │ │ ├── mips64 │ │ └── pipe.s │ │ ├── mipsn32 │ │ ├── lseek.c │ │ └── pipe.s │ │ ├── nice.c │ │ ├── pause.c │ │ ├── pipe.c │ │ ├── pipe2.c │ │ ├── posix_close.c │ │ ├── pread.c │ │ ├── preadv.c │ │ ├── pwrite.c │ │ ├── pwritev.c │ │ ├── read.c │ │ ├── readlink.c │ │ ├── readlinkat.c │ │ ├── readv.c │ │ ├── renameat.c │ │ ├── rmdir.c │ │ ├── setegid.c │ │ ├── seteuid.c │ │ ├── setgid.c │ │ ├── setpgid.c │ │ ├── setpgrp.c │ │ ├── setregid.c │ │ ├── setresgid.c │ │ ├── setresuid.c │ │ ├── setreuid.c │ │ ├── setsid.c │ │ ├── setuid.c │ │ ├── setxid.c │ │ ├── sh │ │ └── pipe.s │ │ ├── sleep.c │ │ ├── symlink.c │ │ ├── symlinkat.c │ │ ├── sync.c │ │ ├── tcgetpgrp.c │ │ ├── tcsetpgrp.c │ │ ├── truncate.c │ │ ├── ttyname.c │ │ ├── ttyname_r.c │ │ ├── ualarm.c │ │ ├── unlink.c │ │ ├── unlinkat.c │ │ ├── usleep.c │ │ ├── write.c │ │ ├── writev.c │ │ └── x32 │ │ └── lseek.c └── tools │ ├── add-cfi.common.awk │ ├── add-cfi.i386.awk │ ├── add-cfi.x86_64.awk │ ├── install.sh │ ├── ld.musl-clang.in │ ├── mkalltypes.sed │ ├── musl-clang.in │ ├── musl-gcc.specs.sh │ └── version.sh └── rootfs └── proc └── self ├── maps └── stat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/Makefile -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/config.mk -------------------------------------------------------------------------------- /dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/dump.cpp -------------------------------------------------------------------------------- /dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/dump.py -------------------------------------------------------------------------------- /dump.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/dump.ql -------------------------------------------------------------------------------- /il2cpp-api-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/il2cpp-api-functions.h -------------------------------------------------------------------------------- /il2cpp-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/il2cpp-class.h -------------------------------------------------------------------------------- /il2cpp-tabledefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/il2cpp-tabledefs.h -------------------------------------------------------------------------------- /libc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/libc.py -------------------------------------------------------------------------------- /musl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/.gitignore -------------------------------------------------------------------------------- /musl/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/.mailmap -------------------------------------------------------------------------------- /musl/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/COPYRIGHT -------------------------------------------------------------------------------- /musl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/INSTALL -------------------------------------------------------------------------------- /musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/Makefile -------------------------------------------------------------------------------- /musl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/README -------------------------------------------------------------------------------- /musl/VERSION: -------------------------------------------------------------------------------- 1 | 1.2.3 2 | -------------------------------------------------------------------------------- /musl/WHATSNEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/WHATSNEW -------------------------------------------------------------------------------- /musl/arch/aarch64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[22]; 2 | -------------------------------------------------------------------------------- /musl/arch/aarch64/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/aarch64/kstat.h -------------------------------------------------------------------------------- /musl/arch/aarch64/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/aarch64/reloc.h -------------------------------------------------------------------------------- /musl/arch/arm/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /musl/arch/arm/bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/arm/bits/fenv.h -------------------------------------------------------------------------------- /musl/arch/arm/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /musl/arch/arm/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/arm/bits/msg.h -------------------------------------------------------------------------------- /musl/arch/arm/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/arm/bits/reg.h -------------------------------------------------------------------------------- /musl/arch/arm/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/arm/bits/sem.h -------------------------------------------------------------------------------- /musl/arch/arm/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/arm/bits/shm.h -------------------------------------------------------------------------------- /musl/arch/arm/bits/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/arm/bits/stat.h -------------------------------------------------------------------------------- /musl/arch/arm/bits/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/arm/bits/user.h -------------------------------------------------------------------------------- /musl/arch/arm/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/arm/crt_arch.h -------------------------------------------------------------------------------- /musl/arch/arm/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/arm/kstat.h -------------------------------------------------------------------------------- /musl/arch/arm/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/arm/reloc.h -------------------------------------------------------------------------------- /musl/arch/generic/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 2 2 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/kd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/limits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/link.h: -------------------------------------------------------------------------------- 1 | typedef uint32_t Elf_Symndx; 2 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/mman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/ptrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/socket.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/arch/generic/bits/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/arch/generic/fp_arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/i386/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /musl/arch/i386/bits/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/i386/bits/io.h -------------------------------------------------------------------------------- /musl/arch/i386/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /musl/arch/i386/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /musl/arch/i386/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/i386/bits/msg.h -------------------------------------------------------------------------------- /musl/arch/i386/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/i386/bits/reg.h -------------------------------------------------------------------------------- /musl/arch/i386/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/i386/bits/sem.h -------------------------------------------------------------------------------- /musl/arch/i386/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[6]; 2 | -------------------------------------------------------------------------------- /musl/arch/i386/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/i386/bits/shm.h -------------------------------------------------------------------------------- /musl/arch/i386/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/i386/crt_arch.h -------------------------------------------------------------------------------- /musl/arch/i386/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/i386/kstat.h -------------------------------------------------------------------------------- /musl/arch/i386/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/i386/reloc.h -------------------------------------------------------------------------------- /musl/arch/m68k/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /musl/arch/m68k/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /musl/arch/m68k/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/m68k/bits/msg.h -------------------------------------------------------------------------------- /musl/arch/m68k/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/m68k/bits/reg.h -------------------------------------------------------------------------------- /musl/arch/m68k/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/m68k/bits/sem.h -------------------------------------------------------------------------------- /musl/arch/m68k/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[39]; 2 | -------------------------------------------------------------------------------- /musl/arch/m68k/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/m68k/bits/shm.h -------------------------------------------------------------------------------- /musl/arch/m68k/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/m68k/crt_arch.h -------------------------------------------------------------------------------- /musl/arch/m68k/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/m68k/kstat.h -------------------------------------------------------------------------------- /musl/arch/m68k/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/m68k/reloc.h -------------------------------------------------------------------------------- /musl/arch/microblaze/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /musl/arch/microblaze/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /musl/arch/microblaze/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[18]; 2 | -------------------------------------------------------------------------------- /musl/arch/mips/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /musl/arch/mips/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /musl/arch/mips/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mips/bits/msg.h -------------------------------------------------------------------------------- /musl/arch/mips/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mips/bits/reg.h -------------------------------------------------------------------------------- /musl/arch/mips/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mips/bits/sem.h -------------------------------------------------------------------------------- /musl/arch/mips/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mips/bits/shm.h -------------------------------------------------------------------------------- /musl/arch/mips/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mips/crt_arch.h -------------------------------------------------------------------------------- /musl/arch/mips/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mips/kstat.h -------------------------------------------------------------------------------- /musl/arch/mips/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mips/reloc.h -------------------------------------------------------------------------------- /musl/arch/mips64/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mips64/kstat.h -------------------------------------------------------------------------------- /musl/arch/mips64/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mips64/reloc.h -------------------------------------------------------------------------------- /musl/arch/mipsn32/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /musl/arch/mipsn32/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /musl/arch/mipsn32/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mipsn32/kstat.h -------------------------------------------------------------------------------- /musl/arch/mipsn32/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/mipsn32/reloc.h -------------------------------------------------------------------------------- /musl/arch/or1k/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /musl/arch/or1k/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /musl/arch/or1k/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 8192 2 | -------------------------------------------------------------------------------- /musl/arch/or1k/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/or1k/bits/msg.h -------------------------------------------------------------------------------- /musl/arch/or1k/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/or1k/bits/reg.h -------------------------------------------------------------------------------- /musl/arch/or1k/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/or1k/bits/sem.h -------------------------------------------------------------------------------- /musl/arch/or1k/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[13]; 2 | -------------------------------------------------------------------------------- /musl/arch/or1k/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/or1k/bits/shm.h -------------------------------------------------------------------------------- /musl/arch/or1k/bits/user.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/arch/or1k/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/or1k/crt_arch.h -------------------------------------------------------------------------------- /musl/arch/or1k/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/or1k/kstat.h -------------------------------------------------------------------------------- /musl/arch/or1k/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/or1k/reloc.h -------------------------------------------------------------------------------- /musl/arch/powerpc/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /musl/arch/powerpc/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /musl/arch/powerpc/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/powerpc/kstat.h -------------------------------------------------------------------------------- /musl/arch/powerpc/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/powerpc/reloc.h -------------------------------------------------------------------------------- /musl/arch/powerpc64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned __int128 __jmp_buf[32]; 2 | -------------------------------------------------------------------------------- /musl/arch/riscv64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[26]; 2 | -------------------------------------------------------------------------------- /musl/arch/riscv64/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/riscv64/kstat.h -------------------------------------------------------------------------------- /musl/arch/riscv64/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/riscv64/reloc.h -------------------------------------------------------------------------------- /musl/arch/s390x/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /musl/arch/s390x/bits/link.h: -------------------------------------------------------------------------------- 1 | typedef uint64_t Elf_Symndx; 2 | -------------------------------------------------------------------------------- /musl/arch/s390x/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[18]; 2 | -------------------------------------------------------------------------------- /musl/arch/s390x/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/s390x/kstat.h -------------------------------------------------------------------------------- /musl/arch/s390x/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/s390x/reloc.h -------------------------------------------------------------------------------- /musl/arch/sh/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /musl/arch/sh/bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/bits/fenv.h -------------------------------------------------------------------------------- /musl/arch/sh/bits/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/bits/float.h -------------------------------------------------------------------------------- /musl/arch/sh/bits/hwcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/bits/hwcap.h -------------------------------------------------------------------------------- /musl/arch/sh/bits/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/bits/ioctl.h -------------------------------------------------------------------------------- /musl/arch/sh/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /musl/arch/sh/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /musl/arch/sh/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/bits/msg.h -------------------------------------------------------------------------------- /musl/arch/sh/bits/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/bits/posix.h -------------------------------------------------------------------------------- /musl/arch/sh/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/bits/sem.h -------------------------------------------------------------------------------- /musl/arch/sh/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[15]; 2 | -------------------------------------------------------------------------------- /musl/arch/sh/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/bits/shm.h -------------------------------------------------------------------------------- /musl/arch/sh/bits/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/bits/stat.h -------------------------------------------------------------------------------- /musl/arch/sh/bits/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/bits/user.h -------------------------------------------------------------------------------- /musl/arch/sh/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/crt_arch.h -------------------------------------------------------------------------------- /musl/arch/sh/ksigaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/ksigaction.h -------------------------------------------------------------------------------- /musl/arch/sh/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/kstat.h -------------------------------------------------------------------------------- /musl/arch/sh/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/sh/reloc.h -------------------------------------------------------------------------------- /musl/arch/x32/bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/bits/fenv.h -------------------------------------------------------------------------------- /musl/arch/x32/bits/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/bits/io.h -------------------------------------------------------------------------------- /musl/arch/x32/bits/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/bits/ipc.h -------------------------------------------------------------------------------- /musl/arch/x32/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /musl/arch/x32/bits/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/bits/mman.h -------------------------------------------------------------------------------- /musl/arch/x32/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/bits/msg.h -------------------------------------------------------------------------------- /musl/arch/x32/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/bits/reg.h -------------------------------------------------------------------------------- /musl/arch/x32/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/bits/sem.h -------------------------------------------------------------------------------- /musl/arch/x32/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/bits/shm.h -------------------------------------------------------------------------------- /musl/arch/x32/bits/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/bits/stat.h -------------------------------------------------------------------------------- /musl/arch/x32/bits/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/bits/user.h -------------------------------------------------------------------------------- /musl/arch/x32/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/crt_arch.h -------------------------------------------------------------------------------- /musl/arch/x32/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/kstat.h -------------------------------------------------------------------------------- /musl/arch/x32/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x32/reloc.h -------------------------------------------------------------------------------- /musl/arch/x86_64/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /musl/arch/x86_64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[8]; 2 | -------------------------------------------------------------------------------- /musl/arch/x86_64/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x86_64/kstat.h -------------------------------------------------------------------------------- /musl/arch/x86_64/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/arch/x86_64/reloc.h -------------------------------------------------------------------------------- /musl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/configure -------------------------------------------------------------------------------- /musl/crt/Scrt1.c: -------------------------------------------------------------------------------- 1 | #include "crt1.c" 2 | -------------------------------------------------------------------------------- /musl/crt/aarch64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/aarch64/crti.s -------------------------------------------------------------------------------- /musl/crt/aarch64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/aarch64/crtn.s -------------------------------------------------------------------------------- /musl/crt/arm/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/arm/crti.s -------------------------------------------------------------------------------- /musl/crt/arm/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/arm/crtn.s -------------------------------------------------------------------------------- /musl/crt/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/crt1.c -------------------------------------------------------------------------------- /musl/crt/crti.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/crt/crtn.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/crt/i386/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/i386/crti.s -------------------------------------------------------------------------------- /musl/crt/i386/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/i386/crtn.s -------------------------------------------------------------------------------- /musl/crt/mips/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/mips/crti.s -------------------------------------------------------------------------------- /musl/crt/mips/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/mips/crtn.s -------------------------------------------------------------------------------- /musl/crt/mips64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/mips64/crti.s -------------------------------------------------------------------------------- /musl/crt/mips64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/mips64/crtn.s -------------------------------------------------------------------------------- /musl/crt/mipsn32/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/mipsn32/crti.s -------------------------------------------------------------------------------- /musl/crt/mipsn32/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/mipsn32/crtn.s -------------------------------------------------------------------------------- /musl/crt/or1k/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/or1k/crti.s -------------------------------------------------------------------------------- /musl/crt/or1k/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/or1k/crtn.s -------------------------------------------------------------------------------- /musl/crt/powerpc/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/powerpc/crti.s -------------------------------------------------------------------------------- /musl/crt/powerpc/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/powerpc/crtn.s -------------------------------------------------------------------------------- /musl/crt/powerpc64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/powerpc64/crti.s -------------------------------------------------------------------------------- /musl/crt/powerpc64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/powerpc64/crtn.s -------------------------------------------------------------------------------- /musl/crt/rcrt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/rcrt1.c -------------------------------------------------------------------------------- /musl/crt/s390x/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/s390x/crti.s -------------------------------------------------------------------------------- /musl/crt/s390x/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/s390x/crtn.s -------------------------------------------------------------------------------- /musl/crt/sh/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/sh/crti.s -------------------------------------------------------------------------------- /musl/crt/sh/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/sh/crtn.s -------------------------------------------------------------------------------- /musl/crt/x32/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/x32/crti.s -------------------------------------------------------------------------------- /musl/crt/x32/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/x32/crtn.s -------------------------------------------------------------------------------- /musl/crt/x86_64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/x86_64/crti.s -------------------------------------------------------------------------------- /musl/crt/x86_64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/crt/x86_64/crtn.s -------------------------------------------------------------------------------- /musl/dynamic.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/dynamic.list -------------------------------------------------------------------------------- /musl/include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/aio.h -------------------------------------------------------------------------------- /musl/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/alloca.h -------------------------------------------------------------------------------- /musl/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/ar.h -------------------------------------------------------------------------------- /musl/include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/arpa/ftp.h -------------------------------------------------------------------------------- /musl/include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/arpa/inet.h -------------------------------------------------------------------------------- /musl/include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /musl/include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/arpa/tftp.h -------------------------------------------------------------------------------- /musl/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/assert.h -------------------------------------------------------------------------------- /musl/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/byteswap.h -------------------------------------------------------------------------------- /musl/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/complex.h -------------------------------------------------------------------------------- /musl/include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/cpio.h -------------------------------------------------------------------------------- /musl/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/crypt.h -------------------------------------------------------------------------------- /musl/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/ctype.h -------------------------------------------------------------------------------- /musl/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/dirent.h -------------------------------------------------------------------------------- /musl/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/dlfcn.h -------------------------------------------------------------------------------- /musl/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/elf.h -------------------------------------------------------------------------------- /musl/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/endian.h -------------------------------------------------------------------------------- /musl/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/err.h -------------------------------------------------------------------------------- /musl/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/errno.h -------------------------------------------------------------------------------- /musl/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/fcntl.h -------------------------------------------------------------------------------- /musl/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/features.h -------------------------------------------------------------------------------- /musl/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/fenv.h -------------------------------------------------------------------------------- /musl/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/float.h -------------------------------------------------------------------------------- /musl/include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/fmtmsg.h -------------------------------------------------------------------------------- /musl/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/fnmatch.h -------------------------------------------------------------------------------- /musl/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/ftw.h -------------------------------------------------------------------------------- /musl/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/getopt.h -------------------------------------------------------------------------------- /musl/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/glob.h -------------------------------------------------------------------------------- /musl/include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/grp.h -------------------------------------------------------------------------------- /musl/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/iconv.h -------------------------------------------------------------------------------- /musl/include/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/ifaddrs.h -------------------------------------------------------------------------------- /musl/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/inttypes.h -------------------------------------------------------------------------------- /musl/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/iso646.h -------------------------------------------------------------------------------- /musl/include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/langinfo.h -------------------------------------------------------------------------------- /musl/include/lastlog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/libgen.h -------------------------------------------------------------------------------- /musl/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/libintl.h -------------------------------------------------------------------------------- /musl/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/limits.h -------------------------------------------------------------------------------- /musl/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/link.h -------------------------------------------------------------------------------- /musl/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/locale.h -------------------------------------------------------------------------------- /musl/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/malloc.h -------------------------------------------------------------------------------- /musl/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/math.h -------------------------------------------------------------------------------- /musl/include/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/include/mntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/mntent.h -------------------------------------------------------------------------------- /musl/include/monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/monetary.h -------------------------------------------------------------------------------- /musl/include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/mqueue.h -------------------------------------------------------------------------------- /musl/include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/net/if.h -------------------------------------------------------------------------------- /musl/include/net/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/net/if_arp.h -------------------------------------------------------------------------------- /musl/include/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/net/route.h -------------------------------------------------------------------------------- /musl/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/netdb.h -------------------------------------------------------------------------------- /musl/include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/netinet/in.h -------------------------------------------------------------------------------- /musl/include/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/netinet/ip.h -------------------------------------------------------------------------------- /musl/include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/nl_types.h -------------------------------------------------------------------------------- /musl/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/paths.h -------------------------------------------------------------------------------- /musl/include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/poll.h -------------------------------------------------------------------------------- /musl/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/pthread.h -------------------------------------------------------------------------------- /musl/include/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/pty.h -------------------------------------------------------------------------------- /musl/include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/pwd.h -------------------------------------------------------------------------------- /musl/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/regex.h -------------------------------------------------------------------------------- /musl/include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/resolv.h -------------------------------------------------------------------------------- /musl/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sched.h -------------------------------------------------------------------------------- /musl/include/scsi/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/scsi/scsi.h -------------------------------------------------------------------------------- /musl/include/scsi/sg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/scsi/sg.h -------------------------------------------------------------------------------- /musl/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/search.h -------------------------------------------------------------------------------- /musl/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/semaphore.h -------------------------------------------------------------------------------- /musl/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/setjmp.h -------------------------------------------------------------------------------- /musl/include/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/shadow.h -------------------------------------------------------------------------------- /musl/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/signal.h -------------------------------------------------------------------------------- /musl/include/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/spawn.h -------------------------------------------------------------------------------- /musl/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/stdalign.h -------------------------------------------------------------------------------- /musl/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/stdarg.h -------------------------------------------------------------------------------- /musl/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/stdbool.h -------------------------------------------------------------------------------- /musl/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/stddef.h -------------------------------------------------------------------------------- /musl/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/stdint.h -------------------------------------------------------------------------------- /musl/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/stdio.h -------------------------------------------------------------------------------- /musl/include/stdio_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/stdio_ext.h -------------------------------------------------------------------------------- /musl/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/stdlib.h -------------------------------------------------------------------------------- /musl/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/string.h -------------------------------------------------------------------------------- /musl/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/strings.h -------------------------------------------------------------------------------- /musl/include/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/stropts.h -------------------------------------------------------------------------------- /musl/include/sys/acct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/acct.h -------------------------------------------------------------------------------- /musl/include/sys/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/auxv.h -------------------------------------------------------------------------------- /musl/include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/dir.h -------------------------------------------------------------------------------- /musl/include/sys/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/epoll.h -------------------------------------------------------------------------------- /musl/include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/errno.h -------------------------------------------------------------------------------- /musl/include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/fcntl.h -------------------------------------------------------------------------------- /musl/include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/file.h -------------------------------------------------------------------------------- /musl/include/sys/fsuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/fsuid.h -------------------------------------------------------------------------------- /musl/include/sys/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/io.h -------------------------------------------------------------------------------- /musl/include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/ioctl.h -------------------------------------------------------------------------------- /musl/include/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/ipc.h -------------------------------------------------------------------------------- /musl/include/sys/kd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/include/sys/klog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/klog.h -------------------------------------------------------------------------------- /musl/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/mman.h -------------------------------------------------------------------------------- /musl/include/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/mount.h -------------------------------------------------------------------------------- /musl/include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/msg.h -------------------------------------------------------------------------------- /musl/include/sys/mtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/mtio.h -------------------------------------------------------------------------------- /musl/include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/param.h -------------------------------------------------------------------------------- /musl/include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/poll.h -------------------------------------------------------------------------------- /musl/include/sys/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/prctl.h -------------------------------------------------------------------------------- /musl/include/sys/procfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/procfs.h -------------------------------------------------------------------------------- /musl/include/sys/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/ptrace.h -------------------------------------------------------------------------------- /musl/include/sys/quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/quota.h -------------------------------------------------------------------------------- /musl/include/sys/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/random.h -------------------------------------------------------------------------------- /musl/include/sys/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/reboot.h -------------------------------------------------------------------------------- /musl/include/sys/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/reg.h -------------------------------------------------------------------------------- /musl/include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/select.h -------------------------------------------------------------------------------- /musl/include/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/sem.h -------------------------------------------------------------------------------- /musl/include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/shm.h -------------------------------------------------------------------------------- /musl/include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/signal.h -------------------------------------------------------------------------------- /musl/include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/socket.h -------------------------------------------------------------------------------- /musl/include/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/stat.h -------------------------------------------------------------------------------- /musl/include/sys/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/statfs.h -------------------------------------------------------------------------------- /musl/include/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/include/sys/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/swap.h -------------------------------------------------------------------------------- /musl/include/sys/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/time.h -------------------------------------------------------------------------------- /musl/include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/timeb.h -------------------------------------------------------------------------------- /musl/include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/times.h -------------------------------------------------------------------------------- /musl/include/sys/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/timex.h -------------------------------------------------------------------------------- /musl/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/types.h -------------------------------------------------------------------------------- /musl/include/sys/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/uio.h -------------------------------------------------------------------------------- /musl/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/un.h -------------------------------------------------------------------------------- /musl/include/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/user.h -------------------------------------------------------------------------------- /musl/include/sys/vfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/include/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/wait.h -------------------------------------------------------------------------------- /musl/include/sys/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sys/xattr.h -------------------------------------------------------------------------------- /musl/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /musl/include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/sysexits.h -------------------------------------------------------------------------------- /musl/include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/syslog.h -------------------------------------------------------------------------------- /musl/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/tar.h -------------------------------------------------------------------------------- /musl/include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/termios.h -------------------------------------------------------------------------------- /musl/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/tgmath.h -------------------------------------------------------------------------------- /musl/include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/threads.h -------------------------------------------------------------------------------- /musl/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/time.h -------------------------------------------------------------------------------- /musl/include/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/uchar.h -------------------------------------------------------------------------------- /musl/include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/ucontext.h -------------------------------------------------------------------------------- /musl/include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/ulimit.h -------------------------------------------------------------------------------- /musl/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/unistd.h -------------------------------------------------------------------------------- /musl/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/utime.h -------------------------------------------------------------------------------- /musl/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/utmp.h -------------------------------------------------------------------------------- /musl/include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/utmpx.h -------------------------------------------------------------------------------- /musl/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/values.h -------------------------------------------------------------------------------- /musl/include/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/wait.h -------------------------------------------------------------------------------- /musl/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/wchar.h -------------------------------------------------------------------------------- /musl/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/wctype.h -------------------------------------------------------------------------------- /musl/include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/include/wordexp.h -------------------------------------------------------------------------------- /musl/ldso/dlstart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/ldso/dlstart.c -------------------------------------------------------------------------------- /musl/ldso/dynlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/ldso/dynlink.c -------------------------------------------------------------------------------- /musl/src/aio/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/aio/aio.c -------------------------------------------------------------------------------- /musl/src/aio/lio_listio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/aio/lio_listio.c -------------------------------------------------------------------------------- /musl/src/complex/__cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/__cexp.c -------------------------------------------------------------------------------- /musl/src/complex/cabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cabs.c -------------------------------------------------------------------------------- /musl/src/complex/cabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cabsf.c -------------------------------------------------------------------------------- /musl/src/complex/cabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cabsl.c -------------------------------------------------------------------------------- /musl/src/complex/cacos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cacos.c -------------------------------------------------------------------------------- /musl/src/complex/cacosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cacosf.c -------------------------------------------------------------------------------- /musl/src/complex/cacosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cacosh.c -------------------------------------------------------------------------------- /musl/src/complex/cacosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cacosl.c -------------------------------------------------------------------------------- /musl/src/complex/carg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/carg.c -------------------------------------------------------------------------------- /musl/src/complex/cargf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cargf.c -------------------------------------------------------------------------------- /musl/src/complex/cargl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cargl.c -------------------------------------------------------------------------------- /musl/src/complex/casin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/casin.c -------------------------------------------------------------------------------- /musl/src/complex/casinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/casinf.c -------------------------------------------------------------------------------- /musl/src/complex/casinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/casinh.c -------------------------------------------------------------------------------- /musl/src/complex/casinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/casinl.c -------------------------------------------------------------------------------- /musl/src/complex/catan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/catan.c -------------------------------------------------------------------------------- /musl/src/complex/catanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/catanf.c -------------------------------------------------------------------------------- /musl/src/complex/catanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/catanh.c -------------------------------------------------------------------------------- /musl/src/complex/catanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/catanl.c -------------------------------------------------------------------------------- /musl/src/complex/ccos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ccos.c -------------------------------------------------------------------------------- /musl/src/complex/ccosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ccosf.c -------------------------------------------------------------------------------- /musl/src/complex/ccosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ccosh.c -------------------------------------------------------------------------------- /musl/src/complex/ccoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ccoshf.c -------------------------------------------------------------------------------- /musl/src/complex/ccoshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ccoshl.c -------------------------------------------------------------------------------- /musl/src/complex/ccosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ccosl.c -------------------------------------------------------------------------------- /musl/src/complex/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cexp.c -------------------------------------------------------------------------------- /musl/src/complex/cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cexpf.c -------------------------------------------------------------------------------- /musl/src/complex/cexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cexpl.c -------------------------------------------------------------------------------- /musl/src/complex/cimag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cimag.c -------------------------------------------------------------------------------- /musl/src/complex/cimagf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cimagf.c -------------------------------------------------------------------------------- /musl/src/complex/cimagl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cimagl.c -------------------------------------------------------------------------------- /musl/src/complex/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/clog.c -------------------------------------------------------------------------------- /musl/src/complex/clogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/clogf.c -------------------------------------------------------------------------------- /musl/src/complex/clogl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/clogl.c -------------------------------------------------------------------------------- /musl/src/complex/conj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/conj.c -------------------------------------------------------------------------------- /musl/src/complex/conjf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/conjf.c -------------------------------------------------------------------------------- /musl/src/complex/conjl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/conjl.c -------------------------------------------------------------------------------- /musl/src/complex/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cpow.c -------------------------------------------------------------------------------- /musl/src/complex/cpowf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cpowf.c -------------------------------------------------------------------------------- /musl/src/complex/cpowl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cpowl.c -------------------------------------------------------------------------------- /musl/src/complex/cproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cproj.c -------------------------------------------------------------------------------- /musl/src/complex/cprojf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cprojf.c -------------------------------------------------------------------------------- /musl/src/complex/cprojl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/cprojl.c -------------------------------------------------------------------------------- /musl/src/complex/creal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/creal.c -------------------------------------------------------------------------------- /musl/src/complex/crealf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/crealf.c -------------------------------------------------------------------------------- /musl/src/complex/creall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/creall.c -------------------------------------------------------------------------------- /musl/src/complex/csin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/csin.c -------------------------------------------------------------------------------- /musl/src/complex/csinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/csinf.c -------------------------------------------------------------------------------- /musl/src/complex/csinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/csinh.c -------------------------------------------------------------------------------- /musl/src/complex/csinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/csinhf.c -------------------------------------------------------------------------------- /musl/src/complex/csinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/csinhl.c -------------------------------------------------------------------------------- /musl/src/complex/csinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/csinl.c -------------------------------------------------------------------------------- /musl/src/complex/csqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/csqrt.c -------------------------------------------------------------------------------- /musl/src/complex/csqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/csqrtf.c -------------------------------------------------------------------------------- /musl/src/complex/csqrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/csqrtl.c -------------------------------------------------------------------------------- /musl/src/complex/ctan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ctan.c -------------------------------------------------------------------------------- /musl/src/complex/ctanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ctanf.c -------------------------------------------------------------------------------- /musl/src/complex/ctanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ctanh.c -------------------------------------------------------------------------------- /musl/src/complex/ctanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ctanhf.c -------------------------------------------------------------------------------- /musl/src/complex/ctanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ctanhl.c -------------------------------------------------------------------------------- /musl/src/complex/ctanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/complex/ctanl.c -------------------------------------------------------------------------------- /musl/src/conf/confstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/conf/confstr.c -------------------------------------------------------------------------------- /musl/src/conf/fpathconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/conf/fpathconf.c -------------------------------------------------------------------------------- /musl/src/conf/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/conf/legacy.c -------------------------------------------------------------------------------- /musl/src/conf/pathconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/conf/pathconf.c -------------------------------------------------------------------------------- /musl/src/conf/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/conf/sysconf.c -------------------------------------------------------------------------------- /musl/src/crypt/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/crypt/crypt.c -------------------------------------------------------------------------------- /musl/src/crypt/crypt_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/crypt/crypt_r.c -------------------------------------------------------------------------------- /musl/src/crypt/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/crypt/encrypt.c -------------------------------------------------------------------------------- /musl/src/ctype/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/alpha.h -------------------------------------------------------------------------------- /musl/src/ctype/casemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/casemap.h -------------------------------------------------------------------------------- /musl/src/ctype/isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/isalnum.c -------------------------------------------------------------------------------- /musl/src/ctype/isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/isalpha.c -------------------------------------------------------------------------------- /musl/src/ctype/isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/isascii.c -------------------------------------------------------------------------------- /musl/src/ctype/isblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/isblank.c -------------------------------------------------------------------------------- /musl/src/ctype/iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iscntrl.c -------------------------------------------------------------------------------- /musl/src/ctype/isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/isdigit.c -------------------------------------------------------------------------------- /musl/src/ctype/isgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/isgraph.c -------------------------------------------------------------------------------- /musl/src/ctype/islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/islower.c -------------------------------------------------------------------------------- /musl/src/ctype/isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/isprint.c -------------------------------------------------------------------------------- /musl/src/ctype/ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/ispunct.c -------------------------------------------------------------------------------- /musl/src/ctype/isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/isspace.c -------------------------------------------------------------------------------- /musl/src/ctype/isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/isupper.c -------------------------------------------------------------------------------- /musl/src/ctype/iswalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswalnum.c -------------------------------------------------------------------------------- /musl/src/ctype/iswalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswalpha.c -------------------------------------------------------------------------------- /musl/src/ctype/iswblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswblank.c -------------------------------------------------------------------------------- /musl/src/ctype/iswcntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswcntrl.c -------------------------------------------------------------------------------- /musl/src/ctype/iswctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswctype.c -------------------------------------------------------------------------------- /musl/src/ctype/iswdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswdigit.c -------------------------------------------------------------------------------- /musl/src/ctype/iswgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswgraph.c -------------------------------------------------------------------------------- /musl/src/ctype/iswlower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswlower.c -------------------------------------------------------------------------------- /musl/src/ctype/iswprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswprint.c -------------------------------------------------------------------------------- /musl/src/ctype/iswpunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswpunct.c -------------------------------------------------------------------------------- /musl/src/ctype/iswspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/iswspace.c -------------------------------------------------------------------------------- /musl/src/ctype/punct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/punct.h -------------------------------------------------------------------------------- /musl/src/ctype/wide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ctype/wide.h -------------------------------------------------------------------------------- /musl/src/dirent/dirfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/dirent/dirfd.c -------------------------------------------------------------------------------- /musl/src/env/clearenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/env/clearenv.c -------------------------------------------------------------------------------- /musl/src/env/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/env/getenv.c -------------------------------------------------------------------------------- /musl/src/env/putenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/env/putenv.c -------------------------------------------------------------------------------- /musl/src/env/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/env/setenv.c -------------------------------------------------------------------------------- /musl/src/env/unsetenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/env/unsetenv.c -------------------------------------------------------------------------------- /musl/src/exit/_Exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/exit/_Exit.c -------------------------------------------------------------------------------- /musl/src/exit/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/exit/abort.c -------------------------------------------------------------------------------- /musl/src/exit/abort_lock.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | volatile int __abort_lock[1]; 4 | -------------------------------------------------------------------------------- /musl/src/exit/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/exit/assert.c -------------------------------------------------------------------------------- /musl/src/exit/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/exit/atexit.c -------------------------------------------------------------------------------- /musl/src/exit/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/exit/exit.c -------------------------------------------------------------------------------- /musl/src/fcntl/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/fcntl/creat.c -------------------------------------------------------------------------------- /musl/src/fcntl/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/fcntl/fcntl.c -------------------------------------------------------------------------------- /musl/src/fcntl/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/fcntl/open.c -------------------------------------------------------------------------------- /musl/src/fcntl/openat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/fcntl/openat.c -------------------------------------------------------------------------------- /musl/src/fenv/arm/fenv.c: -------------------------------------------------------------------------------- 1 | #if !__ARM_PCS_VFP 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /musl/src/fenv/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/fenv/fenv.c -------------------------------------------------------------------------------- /musl/src/fenv/mips/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /musl/src/fenv/mips64/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /musl/src/fenv/mipsn32/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /musl/src/fenv/riscv64/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifndef __riscv_flen 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /musl/src/fenv/sh/fenv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/fenv/sh/fenv.S -------------------------------------------------------------------------------- /musl/src/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/include/time.h -------------------------------------------------------------------------------- /musl/src/internal/defsysinfo.c: -------------------------------------------------------------------------------- 1 | #include "libc.h" 2 | 3 | size_t __sysinfo; 4 | -------------------------------------------------------------------------------- /musl/src/ipc/ftok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/ftok.c -------------------------------------------------------------------------------- /musl/src/ipc/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/ipc.h -------------------------------------------------------------------------------- /musl/src/ipc/msgctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/msgctl.c -------------------------------------------------------------------------------- /musl/src/ipc/msgget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/msgget.c -------------------------------------------------------------------------------- /musl/src/ipc/msgrcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/msgrcv.c -------------------------------------------------------------------------------- /musl/src/ipc/msgsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/msgsnd.c -------------------------------------------------------------------------------- /musl/src/ipc/semctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/semctl.c -------------------------------------------------------------------------------- /musl/src/ipc/semget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/semget.c -------------------------------------------------------------------------------- /musl/src/ipc/semop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/semop.c -------------------------------------------------------------------------------- /musl/src/ipc/shmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/shmat.c -------------------------------------------------------------------------------- /musl/src/ipc/shmctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/shmctl.c -------------------------------------------------------------------------------- /musl/src/ipc/shmdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/shmdt.c -------------------------------------------------------------------------------- /musl/src/ipc/shmget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ipc/shmget.c -------------------------------------------------------------------------------- /musl/src/ldso/__dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ldso/__dlsym.c -------------------------------------------------------------------------------- /musl/src/ldso/dladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ldso/dladdr.c -------------------------------------------------------------------------------- /musl/src/ldso/dlclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ldso/dlclose.c -------------------------------------------------------------------------------- /musl/src/ldso/dlerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ldso/dlerror.c -------------------------------------------------------------------------------- /musl/src/ldso/dlinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ldso/dlinfo.c -------------------------------------------------------------------------------- /musl/src/ldso/dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ldso/dlopen.c -------------------------------------------------------------------------------- /musl/src/ldso/dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ldso/dlsym.c -------------------------------------------------------------------------------- /musl/src/ldso/tlsdesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/ldso/tlsdesc.c -------------------------------------------------------------------------------- /musl/src/legacy/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/legacy/err.c -------------------------------------------------------------------------------- /musl/src/legacy/ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/legacy/ftw.c -------------------------------------------------------------------------------- /musl/src/legacy/utmpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/legacy/utmpx.c -------------------------------------------------------------------------------- /musl/src/linux/brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/brk.c -------------------------------------------------------------------------------- /musl/src/linux/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/cache.c -------------------------------------------------------------------------------- /musl/src/linux/cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/cap.c -------------------------------------------------------------------------------- /musl/src/linux/chroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/chroot.c -------------------------------------------------------------------------------- /musl/src/linux/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/clone.c -------------------------------------------------------------------------------- /musl/src/linux/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/epoll.c -------------------------------------------------------------------------------- /musl/src/linux/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/flock.c -------------------------------------------------------------------------------- /musl/src/linux/gettid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/gettid.c -------------------------------------------------------------------------------- /musl/src/linux/ioperm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/ioperm.c -------------------------------------------------------------------------------- /musl/src/linux/iopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/iopl.c -------------------------------------------------------------------------------- /musl/src/linux/mlock2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/mlock2.c -------------------------------------------------------------------------------- /musl/src/linux/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/module.c -------------------------------------------------------------------------------- /musl/src/linux/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/mount.c -------------------------------------------------------------------------------- /musl/src/linux/ppoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/ppoll.c -------------------------------------------------------------------------------- /musl/src/linux/prctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/prctl.c -------------------------------------------------------------------------------- /musl/src/linux/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/ptrace.c -------------------------------------------------------------------------------- /musl/src/linux/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/reboot.c -------------------------------------------------------------------------------- /musl/src/linux/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/sbrk.c -------------------------------------------------------------------------------- /musl/src/linux/setns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/setns.c -------------------------------------------------------------------------------- /musl/src/linux/splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/splice.c -------------------------------------------------------------------------------- /musl/src/linux/stime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/stime.c -------------------------------------------------------------------------------- /musl/src/linux/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/swap.c -------------------------------------------------------------------------------- /musl/src/linux/syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/syncfs.c -------------------------------------------------------------------------------- /musl/src/linux/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/tee.c -------------------------------------------------------------------------------- /musl/src/linux/utimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/utimes.c -------------------------------------------------------------------------------- /musl/src/linux/wait3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/wait3.c -------------------------------------------------------------------------------- /musl/src/linux/wait4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/wait4.c -------------------------------------------------------------------------------- /musl/src/linux/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/linux/xattr.c -------------------------------------------------------------------------------- /musl/src/locale/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/locale/big5.h -------------------------------------------------------------------------------- /musl/src/locale/hkscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/locale/hkscs.h -------------------------------------------------------------------------------- /musl/src/locale/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/locale/iconv.c -------------------------------------------------------------------------------- /musl/src/locale/ksc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/locale/ksc.h -------------------------------------------------------------------------------- /musl/src/malloc/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/malloc/free.c -------------------------------------------------------------------------------- /musl/src/math/__cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/__cos.c -------------------------------------------------------------------------------- /musl/src/math/__cosdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/__cosdf.c -------------------------------------------------------------------------------- /musl/src/math/__cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/__cosl.c -------------------------------------------------------------------------------- /musl/src/math/__expo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/__expo2.c -------------------------------------------------------------------------------- /musl/src/math/__sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/__sin.c -------------------------------------------------------------------------------- /musl/src/math/__sindf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/__sindf.c -------------------------------------------------------------------------------- /musl/src/math/__sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/__sinl.c -------------------------------------------------------------------------------- /musl/src/math/__tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/__tan.c -------------------------------------------------------------------------------- /musl/src/math/__tandf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/__tandf.c -------------------------------------------------------------------------------- /musl/src/math/__tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/__tanl.c -------------------------------------------------------------------------------- /musl/src/math/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/acos.c -------------------------------------------------------------------------------- /musl/src/math/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/acosf.c -------------------------------------------------------------------------------- /musl/src/math/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/acosh.c -------------------------------------------------------------------------------- /musl/src/math/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/acoshf.c -------------------------------------------------------------------------------- /musl/src/math/acoshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/acoshl.c -------------------------------------------------------------------------------- /musl/src/math/acosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/acosl.c -------------------------------------------------------------------------------- /musl/src/math/arm/fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/arm/fma.c -------------------------------------------------------------------------------- /musl/src/math/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/asin.c -------------------------------------------------------------------------------- /musl/src/math/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/asinf.c -------------------------------------------------------------------------------- /musl/src/math/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/asinh.c -------------------------------------------------------------------------------- /musl/src/math/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/asinhf.c -------------------------------------------------------------------------------- /musl/src/math/asinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/asinhl.c -------------------------------------------------------------------------------- /musl/src/math/asinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/asinl.c -------------------------------------------------------------------------------- /musl/src/math/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/atan.c -------------------------------------------------------------------------------- /musl/src/math/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/atan2.c -------------------------------------------------------------------------------- /musl/src/math/atan2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/atan2f.c -------------------------------------------------------------------------------- /musl/src/math/atan2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/atan2l.c -------------------------------------------------------------------------------- /musl/src/math/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/atanf.c -------------------------------------------------------------------------------- /musl/src/math/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/atanh.c -------------------------------------------------------------------------------- /musl/src/math/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/atanhf.c -------------------------------------------------------------------------------- /musl/src/math/atanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/atanhl.c -------------------------------------------------------------------------------- /musl/src/math/atanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/atanl.c -------------------------------------------------------------------------------- /musl/src/math/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/cbrt.c -------------------------------------------------------------------------------- /musl/src/math/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/cbrtf.c -------------------------------------------------------------------------------- /musl/src/math/cbrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/cbrtl.c -------------------------------------------------------------------------------- /musl/src/math/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/ceil.c -------------------------------------------------------------------------------- /musl/src/math/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/ceilf.c -------------------------------------------------------------------------------- /musl/src/math/ceill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/ceill.c -------------------------------------------------------------------------------- /musl/src/math/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/cos.c -------------------------------------------------------------------------------- /musl/src/math/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/cosf.c -------------------------------------------------------------------------------- /musl/src/math/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/cosh.c -------------------------------------------------------------------------------- /musl/src/math/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/coshf.c -------------------------------------------------------------------------------- /musl/src/math/coshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/coshl.c -------------------------------------------------------------------------------- /musl/src/math/cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/cosl.c -------------------------------------------------------------------------------- /musl/src/math/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/erf.c -------------------------------------------------------------------------------- /musl/src/math/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/erff.c -------------------------------------------------------------------------------- /musl/src/math/erfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/erfl.c -------------------------------------------------------------------------------- /musl/src/math/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/exp.c -------------------------------------------------------------------------------- /musl/src/math/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/exp10.c -------------------------------------------------------------------------------- /musl/src/math/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/exp10f.c -------------------------------------------------------------------------------- /musl/src/math/exp10l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/exp10l.c -------------------------------------------------------------------------------- /musl/src/math/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/exp2.c -------------------------------------------------------------------------------- /musl/src/math/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/exp2f.c -------------------------------------------------------------------------------- /musl/src/math/exp2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/exp2l.c -------------------------------------------------------------------------------- /musl/src/math/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/expf.c -------------------------------------------------------------------------------- /musl/src/math/expl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/expl.c -------------------------------------------------------------------------------- /musl/src/math/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/expm1.c -------------------------------------------------------------------------------- /musl/src/math/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/expm1f.c -------------------------------------------------------------------------------- /musl/src/math/expm1l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/expm1l.c -------------------------------------------------------------------------------- /musl/src/math/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fabs.c -------------------------------------------------------------------------------- /musl/src/math/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fabsf.c -------------------------------------------------------------------------------- /musl/src/math/fabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fabsl.c -------------------------------------------------------------------------------- /musl/src/math/fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fdim.c -------------------------------------------------------------------------------- /musl/src/math/fdimf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fdimf.c -------------------------------------------------------------------------------- /musl/src/math/fdiml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fdiml.c -------------------------------------------------------------------------------- /musl/src/math/finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/finite.c -------------------------------------------------------------------------------- /musl/src/math/finitef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/finitef.c -------------------------------------------------------------------------------- /musl/src/math/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/floor.c -------------------------------------------------------------------------------- /musl/src/math/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/floorf.c -------------------------------------------------------------------------------- /musl/src/math/floorl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/floorl.c -------------------------------------------------------------------------------- /musl/src/math/fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fma.c -------------------------------------------------------------------------------- /musl/src/math/fmaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fmaf.c -------------------------------------------------------------------------------- /musl/src/math/fmal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fmal.c -------------------------------------------------------------------------------- /musl/src/math/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fmax.c -------------------------------------------------------------------------------- /musl/src/math/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fmaxf.c -------------------------------------------------------------------------------- /musl/src/math/fmaxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fmaxl.c -------------------------------------------------------------------------------- /musl/src/math/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fmin.c -------------------------------------------------------------------------------- /musl/src/math/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fminf.c -------------------------------------------------------------------------------- /musl/src/math/fminl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fminl.c -------------------------------------------------------------------------------- /musl/src/math/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fmod.c -------------------------------------------------------------------------------- /musl/src/math/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fmodf.c -------------------------------------------------------------------------------- /musl/src/math/fmodl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/fmodl.c -------------------------------------------------------------------------------- /musl/src/math/frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/frexp.c -------------------------------------------------------------------------------- /musl/src/math/frexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/frexpf.c -------------------------------------------------------------------------------- /musl/src/math/frexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/frexpl.c -------------------------------------------------------------------------------- /musl/src/math/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/hypot.c -------------------------------------------------------------------------------- /musl/src/math/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/hypotf.c -------------------------------------------------------------------------------- /musl/src/math/hypotl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/hypotl.c -------------------------------------------------------------------------------- /musl/src/math/i386/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/src/math/i386/ceil.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/ceilf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/ceill.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/exp2l.s: -------------------------------------------------------------------------------- 1 | # see exp_ld.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp_ld.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/floorf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/floorl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/ldexp.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/ldexpf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/ldexpl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/remquof.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/remquol.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/scalbln.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/scalblnf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/scalblnl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/trunc.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/truncf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /musl/src/math/i386/truncl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /musl/src/math/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/ilogb.c -------------------------------------------------------------------------------- /musl/src/math/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/ilogbf.c -------------------------------------------------------------------------------- /musl/src/math/ilogbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/ilogbl.c -------------------------------------------------------------------------------- /musl/src/math/j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/j0.c -------------------------------------------------------------------------------- /musl/src/math/j0f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/j0f.c -------------------------------------------------------------------------------- /musl/src/math/j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/j1.c -------------------------------------------------------------------------------- /musl/src/math/j1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/j1f.c -------------------------------------------------------------------------------- /musl/src/math/jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/jn.c -------------------------------------------------------------------------------- /musl/src/math/jnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/jnf.c -------------------------------------------------------------------------------- /musl/src/math/ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/ldexp.c -------------------------------------------------------------------------------- /musl/src/math/ldexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/ldexpf.c -------------------------------------------------------------------------------- /musl/src/math/ldexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/ldexpl.c -------------------------------------------------------------------------------- /musl/src/math/lgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/lgamma.c -------------------------------------------------------------------------------- /musl/src/math/lgammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/lgammaf.c -------------------------------------------------------------------------------- /musl/src/math/lgammal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/lgammal.c -------------------------------------------------------------------------------- /musl/src/math/llrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/llrint.c -------------------------------------------------------------------------------- /musl/src/math/llrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/llrintf.c -------------------------------------------------------------------------------- /musl/src/math/llrintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/llrintl.c -------------------------------------------------------------------------------- /musl/src/math/llround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/llround.c -------------------------------------------------------------------------------- /musl/src/math/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/log.c -------------------------------------------------------------------------------- /musl/src/math/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/log10.c -------------------------------------------------------------------------------- /musl/src/math/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/log10f.c -------------------------------------------------------------------------------- /musl/src/math/log10l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/log10l.c -------------------------------------------------------------------------------- /musl/src/math/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/log1p.c -------------------------------------------------------------------------------- /musl/src/math/log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/log1pf.c -------------------------------------------------------------------------------- /musl/src/math/log1pl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/log1pl.c -------------------------------------------------------------------------------- /musl/src/math/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/log2.c -------------------------------------------------------------------------------- /musl/src/math/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/log2f.c -------------------------------------------------------------------------------- /musl/src/math/log2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/log2l.c -------------------------------------------------------------------------------- /musl/src/math/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/logb.c -------------------------------------------------------------------------------- /musl/src/math/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/logbf.c -------------------------------------------------------------------------------- /musl/src/math/logbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/logbl.c -------------------------------------------------------------------------------- /musl/src/math/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/logf.c -------------------------------------------------------------------------------- /musl/src/math/logl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/logl.c -------------------------------------------------------------------------------- /musl/src/math/lrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/lrint.c -------------------------------------------------------------------------------- /musl/src/math/lrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/lrintf.c -------------------------------------------------------------------------------- /musl/src/math/lrintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/lrintl.c -------------------------------------------------------------------------------- /musl/src/math/lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/lround.c -------------------------------------------------------------------------------- /musl/src/math/lroundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/lroundf.c -------------------------------------------------------------------------------- /musl/src/math/lroundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/lroundl.c -------------------------------------------------------------------------------- /musl/src/math/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/modf.c -------------------------------------------------------------------------------- /musl/src/math/modff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/modff.c -------------------------------------------------------------------------------- /musl/src/math/modfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/modfl.c -------------------------------------------------------------------------------- /musl/src/math/nan.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double nan(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /musl/src/math/nanf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float nanf(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /musl/src/math/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/pow.c -------------------------------------------------------------------------------- /musl/src/math/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/powf.c -------------------------------------------------------------------------------- /musl/src/math/powl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/powl.c -------------------------------------------------------------------------------- /musl/src/math/remquo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/remquo.c -------------------------------------------------------------------------------- /musl/src/math/remquof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/remquof.c -------------------------------------------------------------------------------- /musl/src/math/remquol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/remquol.c -------------------------------------------------------------------------------- /musl/src/math/rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/rint.c -------------------------------------------------------------------------------- /musl/src/math/rintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/rintf.c -------------------------------------------------------------------------------- /musl/src/math/rintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/rintl.c -------------------------------------------------------------------------------- /musl/src/math/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/round.c -------------------------------------------------------------------------------- /musl/src/math/roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/roundf.c -------------------------------------------------------------------------------- /musl/src/math/roundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/roundl.c -------------------------------------------------------------------------------- /musl/src/math/scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/scalb.c -------------------------------------------------------------------------------- /musl/src/math/scalbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/scalbf.c -------------------------------------------------------------------------------- /musl/src/math/scalbln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/scalbln.c -------------------------------------------------------------------------------- /musl/src/math/scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/scalbn.c -------------------------------------------------------------------------------- /musl/src/math/scalbnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/scalbnf.c -------------------------------------------------------------------------------- /musl/src/math/scalbnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/scalbnl.c -------------------------------------------------------------------------------- /musl/src/math/signgam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/signgam.c -------------------------------------------------------------------------------- /musl/src/math/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sin.c -------------------------------------------------------------------------------- /musl/src/math/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sincos.c -------------------------------------------------------------------------------- /musl/src/math/sincosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sincosf.c -------------------------------------------------------------------------------- /musl/src/math/sincosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sincosl.c -------------------------------------------------------------------------------- /musl/src/math/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sinf.c -------------------------------------------------------------------------------- /musl/src/math/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sinh.c -------------------------------------------------------------------------------- /musl/src/math/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sinhf.c -------------------------------------------------------------------------------- /musl/src/math/sinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sinhl.c -------------------------------------------------------------------------------- /musl/src/math/sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sinl.c -------------------------------------------------------------------------------- /musl/src/math/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sqrt.c -------------------------------------------------------------------------------- /musl/src/math/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sqrtf.c -------------------------------------------------------------------------------- /musl/src/math/sqrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/sqrtl.c -------------------------------------------------------------------------------- /musl/src/math/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/tan.c -------------------------------------------------------------------------------- /musl/src/math/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/tanf.c -------------------------------------------------------------------------------- /musl/src/math/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/tanh.c -------------------------------------------------------------------------------- /musl/src/math/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/tanhf.c -------------------------------------------------------------------------------- /musl/src/math/tanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/tanhl.c -------------------------------------------------------------------------------- /musl/src/math/tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/tanl.c -------------------------------------------------------------------------------- /musl/src/math/tgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/tgamma.c -------------------------------------------------------------------------------- /musl/src/math/tgammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/tgammaf.c -------------------------------------------------------------------------------- /musl/src/math/tgammal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/tgammal.c -------------------------------------------------------------------------------- /musl/src/math/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/trunc.c -------------------------------------------------------------------------------- /musl/src/math/truncf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/truncf.c -------------------------------------------------------------------------------- /musl/src/math/truncl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/truncl.c -------------------------------------------------------------------------------- /musl/src/math/x32/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/src/math/x32/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /musl/src/math/x32/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /musl/src/math/x32/fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/math/x32/fma.c -------------------------------------------------------------------------------- /musl/src/math/x32/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /musl/src/math/x86_64/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/src/math/x86_64/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /musl/src/math/x86_64/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /musl/src/math/x86_64/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /musl/src/misc/a64l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/a64l.c -------------------------------------------------------------------------------- /musl/src/misc/dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/dirname.c -------------------------------------------------------------------------------- /musl/src/misc/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/ffs.c -------------------------------------------------------------------------------- /musl/src/misc/ffsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/ffsl.c -------------------------------------------------------------------------------- /musl/src/misc/ffsll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/ffsll.c -------------------------------------------------------------------------------- /musl/src/misc/fmtmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/fmtmsg.c -------------------------------------------------------------------------------- /musl/src/misc/forkpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/forkpty.c -------------------------------------------------------------------------------- /musl/src/misc/gethostid.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long gethostid() 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /musl/src/misc/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/getopt.c -------------------------------------------------------------------------------- /musl/src/misc/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/ioctl.c -------------------------------------------------------------------------------- /musl/src/misc/lockf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/lockf.c -------------------------------------------------------------------------------- /musl/src/misc/mntent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/mntent.c -------------------------------------------------------------------------------- /musl/src/misc/nftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/nftw.c -------------------------------------------------------------------------------- /musl/src/misc/openpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/openpty.c -------------------------------------------------------------------------------- /musl/src/misc/ptsname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/ptsname.c -------------------------------------------------------------------------------- /musl/src/misc/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/pty.c -------------------------------------------------------------------------------- /musl/src/misc/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/syscall.c -------------------------------------------------------------------------------- /musl/src/misc/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/syslog.c -------------------------------------------------------------------------------- /musl/src/misc/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/uname.c -------------------------------------------------------------------------------- /musl/src/misc/wordexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/misc/wordexp.c -------------------------------------------------------------------------------- /musl/src/mman/madvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mman/madvise.c -------------------------------------------------------------------------------- /musl/src/mman/mincore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mman/mincore.c -------------------------------------------------------------------------------- /musl/src/mman/mlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mman/mlock.c -------------------------------------------------------------------------------- /musl/src/mman/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mman/mmap.c -------------------------------------------------------------------------------- /musl/src/mman/mremap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mman/mremap.c -------------------------------------------------------------------------------- /musl/src/mman/msync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mman/msync.c -------------------------------------------------------------------------------- /musl/src/mman/munlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mman/munlock.c -------------------------------------------------------------------------------- /musl/src/mman/munmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mman/munmap.c -------------------------------------------------------------------------------- /musl/src/mq/mq_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mq/mq_close.c -------------------------------------------------------------------------------- /musl/src/mq/mq_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mq/mq_notify.c -------------------------------------------------------------------------------- /musl/src/mq/mq_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mq/mq_open.c -------------------------------------------------------------------------------- /musl/src/mq/mq_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mq/mq_send.c -------------------------------------------------------------------------------- /musl/src/mq/mq_unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/mq/mq_unlink.c -------------------------------------------------------------------------------- /musl/src/network/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/network/bind.c -------------------------------------------------------------------------------- /musl/src/network/ent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/network/ent.c -------------------------------------------------------------------------------- /musl/src/network/recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/network/recv.c -------------------------------------------------------------------------------- /musl/src/network/res_init.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int res_init() 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /musl/src/network/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/network/send.c -------------------------------------------------------------------------------- /musl/src/network/serv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/network/serv.c -------------------------------------------------------------------------------- /musl/src/passwd/nscd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/passwd/nscd.h -------------------------------------------------------------------------------- /musl/src/passwd/pwf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/passwd/pwf.h -------------------------------------------------------------------------------- /musl/src/prng/drand48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/prng/drand48.c -------------------------------------------------------------------------------- /musl/src/prng/lcong48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/prng/lcong48.c -------------------------------------------------------------------------------- /musl/src/prng/lrand48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/prng/lrand48.c -------------------------------------------------------------------------------- /musl/src/prng/mrand48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/prng/mrand48.c -------------------------------------------------------------------------------- /musl/src/prng/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/prng/rand.c -------------------------------------------------------------------------------- /musl/src/prng/rand48.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/prng/rand48.h -------------------------------------------------------------------------------- /musl/src/prng/rand_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/prng/rand_r.c -------------------------------------------------------------------------------- /musl/src/prng/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/prng/random.c -------------------------------------------------------------------------------- /musl/src/prng/seed48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/prng/seed48.c -------------------------------------------------------------------------------- /musl/src/prng/srand48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/prng/srand48.c -------------------------------------------------------------------------------- /musl/src/process/fdop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/process/fdop.h -------------------------------------------------------------------------------- /musl/src/process/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/process/fork.c -------------------------------------------------------------------------------- /musl/src/process/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/process/wait.c -------------------------------------------------------------------------------- /musl/src/regex/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/regex/glob.c -------------------------------------------------------------------------------- /musl/src/regex/tre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/regex/tre.h -------------------------------------------------------------------------------- /musl/src/search/tfind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/search/tfind.c -------------------------------------------------------------------------------- /musl/src/search/twalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/search/twalk.c -------------------------------------------------------------------------------- /musl/src/select/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/select/poll.c -------------------------------------------------------------------------------- /musl/src/setjmp/longjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/src/setjmp/setjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/src/signal/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/signal/block.c -------------------------------------------------------------------------------- /musl/src/signal/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/signal/kill.c -------------------------------------------------------------------------------- /musl/src/signal/raise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/signal/raise.c -------------------------------------------------------------------------------- /musl/src/signal/sigsetjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/src/stat/__xstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/__xstat.c -------------------------------------------------------------------------------- /musl/src/stat/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/chmod.c -------------------------------------------------------------------------------- /musl/src/stat/fchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/fchmod.c -------------------------------------------------------------------------------- /musl/src/stat/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/fstat.c -------------------------------------------------------------------------------- /musl/src/stat/fstatat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/fstatat.c -------------------------------------------------------------------------------- /musl/src/stat/lchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/lchmod.c -------------------------------------------------------------------------------- /musl/src/stat/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/lstat.c -------------------------------------------------------------------------------- /musl/src/stat/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/mkdir.c -------------------------------------------------------------------------------- /musl/src/stat/mkdirat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/mkdirat.c -------------------------------------------------------------------------------- /musl/src/stat/mkfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/mkfifo.c -------------------------------------------------------------------------------- /musl/src/stat/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/mknod.c -------------------------------------------------------------------------------- /musl/src/stat/mknodat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/mknodat.c -------------------------------------------------------------------------------- /musl/src/stat/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/stat.c -------------------------------------------------------------------------------- /musl/src/stat/statvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/statvfs.c -------------------------------------------------------------------------------- /musl/src/stat/umask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stat/umask.c -------------------------------------------------------------------------------- /musl/src/stdio/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/ext.c -------------------------------------------------------------------------------- /musl/src/stdio/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/ext2.c -------------------------------------------------------------------------------- /musl/src/stdio/fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fclose.c -------------------------------------------------------------------------------- /musl/src/stdio/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/feof.c -------------------------------------------------------------------------------- /musl/src/stdio/ferror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/ferror.c -------------------------------------------------------------------------------- /musl/src/stdio/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fflush.c -------------------------------------------------------------------------------- /musl/src/stdio/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fgetc.c -------------------------------------------------------------------------------- /musl/src/stdio/fgetln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fgetln.c -------------------------------------------------------------------------------- /musl/src/stdio/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fgets.c -------------------------------------------------------------------------------- /musl/src/stdio/fgetwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fgetwc.c -------------------------------------------------------------------------------- /musl/src/stdio/fgetws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fgetws.c -------------------------------------------------------------------------------- /musl/src/stdio/fileno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fileno.c -------------------------------------------------------------------------------- /musl/src/stdio/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fopen.c -------------------------------------------------------------------------------- /musl/src/stdio/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fputc.c -------------------------------------------------------------------------------- /musl/src/stdio/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fputs.c -------------------------------------------------------------------------------- /musl/src/stdio/fputwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fputwc.c -------------------------------------------------------------------------------- /musl/src/stdio/fputws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fputws.c -------------------------------------------------------------------------------- /musl/src/stdio/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fread.c -------------------------------------------------------------------------------- /musl/src/stdio/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fscanf.c -------------------------------------------------------------------------------- /musl/src/stdio/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fseek.c -------------------------------------------------------------------------------- /musl/src/stdio/ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/ftell.c -------------------------------------------------------------------------------- /musl/src/stdio/fwide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fwide.c -------------------------------------------------------------------------------- /musl/src/stdio/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/fwrite.c -------------------------------------------------------------------------------- /musl/src/stdio/getc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/getc.c -------------------------------------------------------------------------------- /musl/src/stdio/getc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/getc.h -------------------------------------------------------------------------------- /musl/src/stdio/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/gets.c -------------------------------------------------------------------------------- /musl/src/stdio/getw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/getw.c -------------------------------------------------------------------------------- /musl/src/stdio/getwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/getwc.c -------------------------------------------------------------------------------- /musl/src/stdio/ofl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/ofl.c -------------------------------------------------------------------------------- /musl/src/stdio/pclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/pclose.c -------------------------------------------------------------------------------- /musl/src/stdio/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/perror.c -------------------------------------------------------------------------------- /musl/src/stdio/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/popen.c -------------------------------------------------------------------------------- /musl/src/stdio/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/printf.c -------------------------------------------------------------------------------- /musl/src/stdio/putc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/putc.c -------------------------------------------------------------------------------- /musl/src/stdio/putc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/putc.h -------------------------------------------------------------------------------- /musl/src/stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/puts.c -------------------------------------------------------------------------------- /musl/src/stdio/putw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/putw.c -------------------------------------------------------------------------------- /musl/src/stdio/putwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/putwc.c -------------------------------------------------------------------------------- /musl/src/stdio/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/remove.c -------------------------------------------------------------------------------- /musl/src/stdio/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/rename.c -------------------------------------------------------------------------------- /musl/src/stdio/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/rewind.c -------------------------------------------------------------------------------- /musl/src/stdio/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/scanf.c -------------------------------------------------------------------------------- /musl/src/stdio/setbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/setbuf.c -------------------------------------------------------------------------------- /musl/src/stdio/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/sscanf.c -------------------------------------------------------------------------------- /musl/src/stdio/stderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/stderr.c -------------------------------------------------------------------------------- /musl/src/stdio/stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/stdin.c -------------------------------------------------------------------------------- /musl/src/stdio/stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/stdout.c -------------------------------------------------------------------------------- /musl/src/stdio/tmpnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/tmpnam.c -------------------------------------------------------------------------------- /musl/src/stdio/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/ungetc.c -------------------------------------------------------------------------------- /musl/src/stdio/vscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/vscanf.c -------------------------------------------------------------------------------- /musl/src/stdio/wscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdio/wscanf.c -------------------------------------------------------------------------------- /musl/src/stdlib/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/abs.c -------------------------------------------------------------------------------- /musl/src/stdlib/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/atoi.c -------------------------------------------------------------------------------- /musl/src/stdlib/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/atol.c -------------------------------------------------------------------------------- /musl/src/stdlib/atoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/atoll.c -------------------------------------------------------------------------------- /musl/src/stdlib/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/div.c -------------------------------------------------------------------------------- /musl/src/stdlib/ecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/ecvt.c -------------------------------------------------------------------------------- /musl/src/stdlib/fcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/fcvt.c -------------------------------------------------------------------------------- /musl/src/stdlib/gcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/gcvt.c -------------------------------------------------------------------------------- /musl/src/stdlib/labs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/labs.c -------------------------------------------------------------------------------- /musl/src/stdlib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/ldiv.c -------------------------------------------------------------------------------- /musl/src/stdlib/llabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/llabs.c -------------------------------------------------------------------------------- /musl/src/stdlib/lldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/lldiv.c -------------------------------------------------------------------------------- /musl/src/stdlib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/stdlib/qsort.c -------------------------------------------------------------------------------- /musl/src/string/bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/string/bcmp.c -------------------------------------------------------------------------------- /musl/src/string/bcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/string/bcopy.c -------------------------------------------------------------------------------- /musl/src/string/bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/string/bzero.c -------------------------------------------------------------------------------- /musl/src/string/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/string/index.c -------------------------------------------------------------------------------- /musl/src/string/swab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/string/swab.c -------------------------------------------------------------------------------- /musl/src/temp/mkdtemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/temp/mkdtemp.c -------------------------------------------------------------------------------- /musl/src/temp/mkstemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/temp/mkstemp.c -------------------------------------------------------------------------------- /musl/src/temp/mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/temp/mktemp.c -------------------------------------------------------------------------------- /musl/src/thread/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/thread/clone.c -------------------------------------------------------------------------------- /musl/src/thread/syscall_cp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/src/thread/tls.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /musl/src/time/__tz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/__tz.c -------------------------------------------------------------------------------- /musl/src/time/asctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/asctime.c -------------------------------------------------------------------------------- /musl/src/time/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/clock.c -------------------------------------------------------------------------------- /musl/src/time/ctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/ctime.c -------------------------------------------------------------------------------- /musl/src/time/ctime_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/ctime_r.c -------------------------------------------------------------------------------- /musl/src/time/ftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/ftime.c -------------------------------------------------------------------------------- /musl/src/time/getdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/getdate.c -------------------------------------------------------------------------------- /musl/src/time/gmtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/gmtime.c -------------------------------------------------------------------------------- /musl/src/time/mktime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/mktime.c -------------------------------------------------------------------------------- /musl/src/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/time.c -------------------------------------------------------------------------------- /musl/src/time/timegm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/timegm.c -------------------------------------------------------------------------------- /musl/src/time/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/times.c -------------------------------------------------------------------------------- /musl/src/time/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/time/utime.c -------------------------------------------------------------------------------- /musl/src/unistd/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/_exit.c -------------------------------------------------------------------------------- /musl/src/unistd/acct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/acct.c -------------------------------------------------------------------------------- /musl/src/unistd/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/alarm.c -------------------------------------------------------------------------------- /musl/src/unistd/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/chdir.c -------------------------------------------------------------------------------- /musl/src/unistd/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/chown.c -------------------------------------------------------------------------------- /musl/src/unistd/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/close.c -------------------------------------------------------------------------------- /musl/src/unistd/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/dup.c -------------------------------------------------------------------------------- /musl/src/unistd/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/dup2.c -------------------------------------------------------------------------------- /musl/src/unistd/dup3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/dup3.c -------------------------------------------------------------------------------- /musl/src/unistd/fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/fsync.c -------------------------------------------------------------------------------- /musl/src/unistd/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/link.c -------------------------------------------------------------------------------- /musl/src/unistd/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/lseek.c -------------------------------------------------------------------------------- /musl/src/unistd/nice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/nice.c -------------------------------------------------------------------------------- /musl/src/unistd/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/pause.c -------------------------------------------------------------------------------- /musl/src/unistd/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/pipe.c -------------------------------------------------------------------------------- /musl/src/unistd/pipe2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/pipe2.c -------------------------------------------------------------------------------- /musl/src/unistd/pread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/pread.c -------------------------------------------------------------------------------- /musl/src/unistd/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/read.c -------------------------------------------------------------------------------- /musl/src/unistd/readv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/readv.c -------------------------------------------------------------------------------- /musl/src/unistd/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/rmdir.c -------------------------------------------------------------------------------- /musl/src/unistd/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/sleep.c -------------------------------------------------------------------------------- /musl/src/unistd/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/sync.c -------------------------------------------------------------------------------- /musl/src/unistd/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/src/unistd/write.c -------------------------------------------------------------------------------- /musl/tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/tools/install.sh -------------------------------------------------------------------------------- /musl/tools/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/musl/tools/version.sh -------------------------------------------------------------------------------- /rootfs/proc/self/maps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/rootfs/proc/self/maps -------------------------------------------------------------------------------- /rootfs/proc/self/stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrolife/qiling-il2cpp-dump/HEAD/rootfs/proc/self/stat --------------------------------------------------------------------------------