├── .gitignore ├── COPYING ├── Doom.CPP ├── Frotz.CPP ├── README.md ├── TempleLoader.CPP ├── Test.CPP ├── advent.z5 ├── demo.iso ├── detective.z5 ├── doom.sh ├── frotz.prg ├── frotz.sh ├── frotz ├── AUTHORS ├── BUGS ├── ChangeLog ├── DOSBUILD.txt ├── DUMB ├── HOW_TO_PLAY ├── INSTALL ├── Makefile ├── PACKAGING ├── PORTING ├── README.1st.frotz ├── README.frotz ├── SPEECH ├── TODO ├── doc │ ├── dfrotz.6 │ ├── frotz.6 │ ├── frotz.conf-big │ └── frotz.conf-small └── src │ ├── blorb │ ├── blorb.h │ ├── blorblib.c │ └── blorblow.h │ ├── common │ ├── buffer.c │ ├── err.c │ ├── fastmem.c │ ├── files.c │ ├── frotz.h │ ├── getopt.c │ ├── hotkey.c │ ├── input.c │ ├── main.c │ ├── math.c │ ├── object.c │ ├── process.c │ ├── quetzal.c │ ├── random.c │ ├── redirect.c │ ├── screen.c │ ├── setup.h │ ├── sound.c │ ├── stream.c │ ├── table.c │ ├── text.c │ └── variable.c │ ├── curses │ ├── getopt.h │ ├── ux_audio_none.c │ ├── ux_audio_oss.c │ ├── ux_blorb.c │ ├── ux_blorb.h │ ├── ux_file.c │ ├── ux_frotz.h │ ├── ux_init.c │ ├── ux_input.c │ ├── ux_pic.c │ ├── ux_screen.c │ ├── ux_setup.h │ └── ux_text.c │ ├── dos │ ├── bcblorb.c │ ├── bcblorb.h │ ├── bcfrotz.h │ ├── bcinit.c │ ├── bcinput.c │ ├── bcmouse.c │ ├── bcpic.c │ ├── bcsample.c │ ├── bcscreen.c │ ├── bctext.c │ ├── blorb.h │ ├── blorblow.h │ └── fontdata.h │ ├── dumb │ ├── dumb_frotz.h │ ├── dumb_init.c │ ├── dumb_input.c │ ├── dumb_output.c │ └── dumb_pic.c │ ├── misc │ └── findsound.sh │ ├── sdl │ ├── samplerate.h │ ├── sf_aiffwav.c │ ├── sf_deffont.c │ ├── sf_font3.c │ ├── sf_fonts.c │ ├── sf_frotz.h │ ├── sf_ftype.c │ ├── sf_images.c │ ├── sf_msg_en.c │ ├── sf_osfdlg.c │ ├── sf_resample.c │ ├── sf_resource.c │ ├── sf_sig.c │ ├── sf_sound.c │ ├── sf_util.c │ └── sf_video.c │ └── test │ ├── README │ ├── crashme.inf │ ├── crashme.z5 │ ├── etude │ ├── Makefile │ ├── README │ ├── accentin.inc │ ├── accents.inc │ ├── color.inc │ ├── division.inc │ ├── etude.inf │ ├── etude.z5 │ ├── exittext.inc │ ├── givenin.inc │ ├── header.inc │ ├── styles.inc │ ├── timedch.inc │ ├── timedstr.inc │ └── undo.inc │ ├── gntests.inf │ ├── gntests.z5 │ ├── random.inf │ ├── random.z5 │ ├── strictz.inf │ ├── strictz.z5 │ ├── unicode.inf │ └── unicode.z5 ├── headless_doom ├── Makefile ├── d_main.c ├── r_data.c └── w_wad.c ├── loader ├── build.sh ├── linuxloader.c ├── load.c ├── load.h ├── make_program.py ├── offset.x ├── setup.s ├── syscall.c ├── unoffset.x ├── winloader.c └── winshims.s ├── templeos.png ├── tester.prg ├── tester.sh ├── tester ├── heap.c └── main.s └── uClibc-0.9.33.2 ├── .config ├── .gitignore ├── COPYING.LIB ├── COPYING.LIB.boilerplate ├── Changelog ├── DEDICATION.mjn3 ├── INSTALL ├── MAINTAINERS ├── Makefile ├── Makefile.help ├── Makefile.in ├── Makerules ├── README ├── Rules.mak ├── TODO ├── docs ├── Glibc_vs_uClibc_Differences.txt ├── PORTING ├── crt.txt ├── defines.txt ├── man │ ├── ldconfig.8 │ └── ldd.1 ├── probe_math_exception.c ├── pthreads_hacking.txt ├── sigaction.txt ├── threads.txt ├── uClibc_vs_SuSv3.txt └── wchar_and_locale.txt ├── extra ├── Configs │ ├── Config.alpha │ ├── Config.arm │ ├── Config.avr32 │ ├── Config.bfin │ ├── Config.c6x │ ├── Config.cris │ ├── Config.e1 │ ├── Config.frv │ ├── Config.h8300 │ ├── Config.hppa │ ├── Config.i386 │ ├── Config.i960 │ ├── Config.ia64 │ ├── Config.in │ ├── Config.in.arch │ ├── Config.m68k │ ├── Config.microblaze │ ├── Config.mips │ ├── Config.nios │ ├── Config.nios2 │ ├── Config.powerpc │ ├── Config.sh │ ├── Config.sh64 │ ├── Config.sparc │ ├── Config.v850 │ ├── Config.vax │ ├── Config.x86_64 │ ├── Config.xtensa │ └── defconfigs │ │ ├── alpha │ │ └── defconfig │ │ ├── arm │ │ └── defconfig │ │ ├── avr32 │ │ └── defconfig │ │ ├── bfin │ │ └── defconfig │ │ ├── cris │ │ └── defconfig │ │ ├── e1 │ │ └── defconfig │ │ ├── frv │ │ └── defconfig │ │ ├── h8300 │ │ └── defconfig │ │ ├── hppa │ │ └── defconfig │ │ ├── i386 │ │ └── defconfig │ │ ├── i960 │ │ └── defconfig │ │ ├── ia64 │ │ └── defconfig │ │ ├── m68k │ │ └── defconfig │ │ ├── microblaze │ │ └── defconfig │ │ ├── mips │ │ └── defconfig │ │ ├── nios │ │ └── defconfig │ │ ├── nios2 │ │ └── defconfig │ │ ├── powerpc │ │ └── defconfig │ │ ├── sh │ │ └── defconfig │ │ ├── sh64 │ │ └── defconfig │ │ ├── sparc │ │ └── defconfig │ │ ├── v850 │ │ └── defconfig │ │ ├── vax │ │ └── defconfig │ │ └── x86_64 │ │ └── defconfig ├── Makefile ├── Makefile.in ├── config │ ├── .gitignore │ ├── Makefile │ ├── Makefile.kconfig │ ├── POTFILES.in │ ├── README.uClibc │ ├── check.sh │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── kconfig-language.txt │ ├── kconfig-to-uclibc.patch.gz │ ├── kconfig_load.c │ ├── kxgettext.c │ ├── lex.zconf.c_shipped │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── .gitignore │ │ ├── BIG.FAT.WARNING │ │ ├── check-lxdialog.sh │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── qconf.cc │ ├── qconf.h │ ├── symbol.c │ ├── util.c │ ├── zconf.gperf │ ├── zconf.hash.c_shipped │ ├── zconf.l │ ├── zconf.tab.c_shipped │ └── zconf.y ├── libstrip │ └── libstrip ├── locale │ ├── .gitignore │ ├── LOCALES │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── charmaps │ │ ├── ARMSCII-8.pairs │ │ ├── ASCII.pairs │ │ ├── CP1251.pairs │ │ ├── CP1255.pairs │ │ ├── GEORGIAN-PS.pairs │ │ ├── ISO-8859-1.pairs │ │ ├── ISO-8859-10.pairs │ │ ├── ISO-8859-13.pairs │ │ ├── ISO-8859-14.pairs │ │ ├── ISO-8859-15.pairs │ │ ├── ISO-8859-16.pairs │ │ ├── ISO-8859-2.pairs │ │ ├── ISO-8859-3.pairs │ │ ├── ISO-8859-4.pairs │ │ ├── ISO-8859-5.pairs │ │ ├── ISO-8859-6.pairs │ │ ├── ISO-8859-7.pairs │ │ ├── ISO-8859-8.pairs │ │ ├── ISO-8859-9.pairs │ │ ├── KOI8-R.pairs │ │ ├── KOI8-T.pairs │ │ ├── KOI8-U.pairs │ │ └── TIS-620.pairs │ ├── collation │ │ ├── af_ZA │ │ ├── am_ET │ │ ├── ar_AE │ │ ├── ar_BH │ │ ├── ar_DZ │ │ ├── ar_EG │ │ ├── ar_IN │ │ ├── ar_IQ │ │ ├── ar_JO │ │ ├── ar_KW │ │ ├── ar_LB │ │ ├── ar_LY │ │ ├── ar_MA │ │ ├── ar_OM │ │ ├── ar_QA │ │ ├── ar_SA │ │ ├── ar_SD │ │ ├── ar_SY │ │ ├── ar_TN │ │ ├── ar_YE │ │ ├── az_AZ │ │ ├── be_BY │ │ ├── bg_BG │ │ ├── bn_BD │ │ ├── bn_IN │ │ ├── br_FR │ │ ├── bs_BA │ │ ├── ca_ES │ │ ├── comm │ │ ├── cs_CZ │ │ ├── cy_GB │ │ ├── da_DK │ │ ├── de_AT │ │ ├── de_BE │ │ ├── de_CH │ │ ├── de_DE │ │ ├── de_LU │ │ ├── el_GR │ │ ├── en_AU │ │ ├── en_BW │ │ ├── en_CA │ │ ├── en_DK │ │ ├── en_GB │ │ ├── en_HK │ │ ├── en_IE │ │ ├── en_IN │ │ ├── en_NZ │ │ ├── en_PH │ │ ├── en_SG │ │ ├── en_US │ │ ├── en_ZA │ │ ├── en_ZW │ │ ├── eo_EO │ │ ├── es_AR │ │ ├── es_BO │ │ ├── es_CL │ │ ├── es_CO │ │ ├── es_CR │ │ ├── es_DO │ │ ├── es_EC │ │ ├── es_ES │ │ ├── es_GT │ │ ├── es_HN │ │ ├── es_MX │ │ ├── es_NI │ │ ├── es_PA │ │ ├── es_PE │ │ ├── es_PR │ │ ├── es_PY │ │ ├── es_SV │ │ ├── es_US │ │ ├── es_UY │ │ ├── es_VE │ │ ├── et_EE │ │ ├── eu_ES │ │ ├── fa_IR │ │ ├── fi_FI │ │ ├── fo_FO │ │ ├── fr_BE │ │ ├── fr_CA │ │ ├── fr_CH │ │ ├── fr_FR │ │ ├── fr_LU │ │ ├── ga_IE │ │ ├── gd_GB │ │ ├── gl_ES │ │ ├── gv_GB │ │ ├── he_IL │ │ ├── hi_IN │ │ ├── hr_HR │ │ ├── hu_HU │ │ ├── hy_AM │ │ ├── id_ID │ │ ├── is_IS │ │ ├── iso14651_t1 │ │ ├── it_CH │ │ ├── it_IT │ │ ├── iw_IL │ │ ├── ja_JP │ │ ├── ka_GE │ │ ├── kl_GL │ │ ├── ko_KR │ │ ├── kw_GB │ │ ├── lt_LT │ │ ├── lv_LV │ │ ├── mi_NZ │ │ ├── mk_MK │ │ ├── mr_IN │ │ ├── ms_MY │ │ ├── mt_MT │ │ ├── nl_BE │ │ ├── nl_NL │ │ ├── nn_NO │ │ ├── no_NO │ │ ├── oc_FR │ │ ├── pl_PL │ │ ├── pt_BR │ │ ├── pt_PT │ │ ├── ro_RO │ │ ├── ru_RU │ │ ├── ru_UA │ │ ├── se_NO │ │ ├── sk_SK │ │ ├── sl_SI │ │ ├── sq_AL │ │ ├── sr_YU │ │ ├── sv_FI │ │ ├── sv_SE │ │ ├── ta_IN │ │ ├── te_IN │ │ ├── tg_TJ │ │ ├── th_TH │ │ ├── ti_ER │ │ ├── ti_ET │ │ ├── tl_PH │ │ ├── tr_TR │ │ ├── tt_RU │ │ ├── uk_UA │ │ ├── ur_PK │ │ ├── uz_UZ │ │ ├── vi_VN │ │ ├── wa_BE │ │ ├── yi_US │ │ ├── zh_CN │ │ ├── zh_HK │ │ ├── zh_SG │ │ └── zh_TW │ ├── gen_collate.c │ ├── gen_ldc.c │ ├── gen_locale.c │ ├── gen_mmap.c │ ├── gen_wc8bit.c │ ├── gen_wctype.c │ ├── lmmtolso.c │ ├── locale_mmap.h │ ├── programs │ │ ├── categories.def │ │ └── locale.c │ └── tst_nl_langinfo.c └── scripts │ ├── .gitignore │ ├── MAKEALL │ ├── Makefile.arch.lvl3 │ ├── Makefile.arch.lvl4 │ ├── Makefile.libs.lvl0 │ ├── Makefile.libs.lvl1 │ ├── Makefile.libs.lvl2 │ ├── Makefile.objs.lvl2 │ ├── Makefile.objs.lvl3 │ ├── Makefile.objs.lvl4 │ ├── Makefile.utils.lvl1 │ ├── conf-header.sh │ ├── cppcheck.sh │ ├── create_makefiles.sh │ ├── defs.awk │ ├── format.lds │ ├── gen-as-const.awk │ ├── gen_bits_syscall_h.sh │ ├── getent │ ├── install_headers.sh │ ├── randconfig.sh │ ├── relative_path.sh │ ├── relinfo.pl │ ├── unifdef.c │ └── unifdef.test ├── include ├── .gitignore ├── _lfs_64.h ├── a.out.h ├── alloca.h ├── ar.h ├── arpa │ ├── ftp.h │ ├── inet.h │ ├── nameser.h │ ├── nameser_compat.h │ ├── telnet.h │ └── tftp.h ├── assert.h ├── atomic.h ├── byteswap.h ├── complex.h ├── cpio.h ├── crypt.h ├── ctype.h ├── dirent.h ├── dlfcn.h ├── elf.h ├── endian.h ├── err.h ├── errno.h ├── error.h ├── execinfo.h ├── fcntl.h ├── features.h ├── fenv.h ├── fnmatch.h ├── fts.h ├── ftw.h ├── getopt.h ├── glob.h ├── gnu-versions.h ├── grp.h ├── iconv.h ├── ieee754.h ├── ifaddrs.h ├── internal │ └── parse_config.h ├── inttypes.h ├── langinfo.h ├── lastlog.h ├── libc-internal.h ├── libc-symbols.h ├── libgen.h ├── libintl.h ├── limits.h ├── link.h ├── locale.h ├── malloc.h ├── math.h ├── memory.h ├── mntent.h ├── mqueue.h ├── net │ ├── ethernet.h │ ├── if.h │ ├── if_arp.h │ ├── if_packet.h │ ├── if_ppp.h │ ├── if_shaper.h │ ├── if_slip.h │ ├── ppp-comp.h │ ├── ppp_defs.h │ └── route.h ├── netax25 │ └── ax25.h ├── netdb.h ├── neteconet │ └── ec.h ├── netinet │ ├── ether.h │ ├── icmp6.h │ ├── if_ether.h │ ├── if_fddi.h │ ├── if_tr.h │ ├── igmp.h │ ├── in.h │ ├── in_systm.h │ ├── ip.h │ ├── ip6.h │ ├── ip_icmp.h │ ├── tcp.h │ └── udp.h ├── netipx │ └── ipx.h ├── netpacket │ └── packet.h ├── nl_types.h ├── obstack.h ├── paths.h ├── poll.h ├── printf.h ├── protocols │ ├── routed.h │ ├── rwhod.h │ ├── talkd.h │ └── timed.h ├── pty.h ├── pwd.h ├── regex.h ├── regexp.h ├── resolv.h ├── rpc │ ├── auth.h │ ├── auth_des.h │ ├── auth_unix.h │ ├── clnt.h │ ├── des_crypt.h │ ├── key_prot.h │ ├── netdb.h │ ├── pmap_clnt.h │ ├── pmap_prot.h │ ├── pmap_rmt.h │ ├── rpc.h │ ├── rpc_des.h │ ├── rpc_msg.h │ ├── svc.h │ ├── svc_auth.h │ ├── types.h │ └── xdr.h ├── sched.h ├── scsi │ ├── scsi.h │ ├── scsi_ioctl.h │ └── sg.h ├── search.h ├── setjmp.h ├── sgtty.h ├── shadow.h ├── signal.h ├── stdint.h ├── stdio.h ├── stdio_ext.h ├── stdlib.h ├── string.h ├── strings.h ├── sys │ ├── bitypes.h │ ├── cdefs.h │ ├── dir.h │ ├── errno.h │ ├── fcntl.h │ ├── file.h │ ├── fsuid.h │ ├── ioctl.h │ ├── ipc.h │ ├── kd.h │ ├── kdaemon.h │ ├── klog.h │ ├── mman.h │ ├── mount.h │ ├── msg.h │ ├── mtio.h │ ├── param.h │ ├── personality.h │ ├── poll.h │ ├── queue.h │ ├── quota.h │ ├── reboot.h │ ├── resource.h │ ├── select.h │ ├── sem.h │ ├── sendfile.h │ ├── shm.h │ ├── signal.h │ ├── socket.h │ ├── socketvar.h │ ├── soundcard.h │ ├── stat.h │ ├── statfs.h │ ├── statvfs.h │ ├── swap.h │ ├── syscall.h │ ├── sysctl.h │ ├── sysinfo.h │ ├── syslog.h │ ├── sysmacros.h │ ├── termios.h │ ├── time.h │ ├── timeb.h │ ├── times.h │ ├── timex.h │ ├── ttydefaults.h │ ├── types.h │ ├── uio.h │ ├── un.h │ ├── unistd.h │ ├── ustat.h │ ├── utsname.h │ ├── vfs.h │ ├── vt.h │ ├── wait.h │ └── xattr.h ├── syscall.h ├── sysexits.h ├── syslog.h ├── tar.h ├── termio.h ├── termios.h ├── tgmath.h ├── time.h ├── tls.h ├── ttyent.h ├── ucontext.h ├── ulimit.h ├── unistd.h ├── ustat.h ├── utime.h ├── utmp.h ├── utmpx.h ├── values.h ├── wait.h ├── wchar-stub.h ├── wchar.h ├── wctype.h ├── wordexp.h └── xlocale.h ├── ldso ├── COPYRIGHT ├── Makefile ├── Makefile.in ├── README ├── include │ ├── dl-defs.h │ ├── dl-elf.h │ ├── dl-hash.h │ ├── dl-string.h │ ├── dl-syscall.h │ ├── dlfcn.h │ ├── ldso.h │ ├── ldsodefs.h │ └── unsecvars.h ├── ldso │ ├── Makefile │ ├── Makefile.in │ ├── arm │ │ ├── aeabi_read_tp.S │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ ├── resolve.S │ │ └── thumb_atomics.S │ ├── avr32 │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── bfin │ │ ├── dl-debug.h │ │ ├── dl-inlines.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── c6x │ │ ├── dl-debug.h │ │ ├── dl-inlines.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── cris │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── dl-array.c │ ├── dl-debug.c │ ├── dl-elf.c │ ├── dl-hash.c │ ├── dl-startup.c │ ├── dl-symbols.c │ ├── dl-tls.c │ ├── fdpic │ │ ├── dl-inlines.h │ │ └── dl-sysdep.h │ ├── frv │ │ ├── dl-debug.h │ │ ├── dl-inlines.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── i386 │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── ldso.c │ ├── m68k │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── microblaze │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── mips │ │ ├── README │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── powerpc │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── sh │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── sh64 │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── sparc │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ ├── x86_64 │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S │ └── xtensa │ │ ├── dl-debug.h │ │ ├── dl-startup.h │ │ ├── dl-syscalls.h │ │ ├── dl-sysdep.h │ │ ├── elfinterp.c │ │ └── resolve.S ├── libdl │ ├── Makefile │ ├── Makefile.in │ └── libdl.c └── man │ ├── Makefile │ ├── dlopen.3 │ ├── ld.so.8 │ ├── ld.so.texi │ ├── ldconfig.8 │ └── ldd.1 ├── libc ├── Makefile ├── Makefile.in ├── inet │ ├── .indent.pro │ ├── Makefile │ ├── Makefile.in │ ├── _res_state.c │ ├── accept.c │ ├── accept4.c │ ├── addr.c │ ├── bind.c │ ├── closenameservers.c │ ├── connect.c │ ├── decodea.c │ ├── decoded.c │ ├── decodeh.c │ ├── decodep.c │ ├── decodeq.c │ ├── dnslookup.c │ ├── encodea.c │ ├── encoded.c │ ├── encodeh.c │ ├── encodep.c │ ├── encodeq.c │ ├── ether_addr.c │ ├── ethers.c │ ├── formquery.c │ ├── gai_strerror.c │ ├── get_hosts_byaddr_r.c │ ├── get_hosts_byname_r.c │ ├── getaddrinfo.c │ ├── gethostbyaddr.c │ ├── gethostbyaddr_r.c │ ├── gethostbyname.c │ ├── gethostbyname2.c │ ├── gethostbyname2_r.c │ ├── gethostbyname_r.c │ ├── gethostent.c │ ├── gethostent_r.c │ ├── getnameinfo.c │ ├── getnet.c │ ├── getpeername.c │ ├── getproto.c │ ├── getservice.c │ ├── getsockname.c │ ├── getsockopt.c │ ├── herror.c │ ├── hostid.c │ ├── if_index.c │ ├── ifaddrs.c │ ├── in6_addr.c │ ├── inet_addr.c │ ├── inet_aton.c │ ├── inet_lnaof.c │ ├── inet_makeaddr.c │ ├── inet_net.c │ ├── inet_netof.c │ ├── inet_ntoa.c │ ├── lengthd.c │ ├── lengthq.c │ ├── listen.c │ ├── netlinkaccess.h │ ├── ns_name.c │ ├── ns_netint.c │ ├── ns_parse.c │ ├── ntohl.c │ ├── ntop.c │ ├── opennameservers.c │ ├── opensock.c │ ├── read_etc_hosts_r.c │ ├── recv.c │ ├── recvfrom.c │ ├── recvmsg.c │ ├── res_comp.c │ ├── res_data.c │ ├── res_init.c │ ├── res_query.c │ ├── resolv.c │ ├── rpc │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── auth_none.c │ │ ├── auth_unix.c │ │ ├── authunix_prot.c │ │ ├── bindresvport.c │ │ ├── clnt_generic.c │ │ ├── clnt_perror.c │ │ ├── clnt_raw.c │ │ ├── clnt_simple.c │ │ ├── clnt_tcp.c │ │ ├── clnt_udp.c │ │ ├── clnt_unix.c │ │ ├── create_xid.c │ │ ├── errqueue.h │ │ ├── get_myaddress.c │ │ ├── getrpcent.c │ │ ├── getrpcport.c │ │ ├── pm_getmaps.c │ │ ├── pm_getport.c │ │ ├── pmap_clnt.c │ │ ├── pmap_prot.c │ │ ├── pmap_prot2.c │ │ ├── pmap_rmt.c │ │ ├── rcmd.c │ │ ├── rexec.c │ │ ├── rpc_cmsg.c │ │ ├── rpc_commondata.c │ │ ├── rpc_dtablesize.c │ │ ├── rpc_private.h │ │ ├── rpc_prot.c │ │ ├── rpc_thread.c │ │ ├── rtime.c │ │ ├── ruserpass.c │ │ ├── sa_len.c │ │ ├── svc.c │ │ ├── svc_auth.c │ │ ├── svc_authux.c │ │ ├── svc_raw.c │ │ ├── svc_run.c │ │ ├── svc_simple.c │ │ ├── svc_tcp.c │ │ ├── svc_udp.c │ │ ├── svc_unix.c │ │ ├── xdr.c │ │ ├── xdr_array.c │ │ ├── xdr_float.c │ │ ├── xdr_intXX_t.c │ │ ├── xdr_mem.c │ │ ├── xdr_rec.c │ │ ├── xdr_reference.c │ │ └── xdr_stdio.c │ ├── send.c │ ├── sendmsg.c │ ├── sendto.c │ ├── setsockopt.c │ ├── shutdown.c │ ├── socket.c │ ├── socketcalls.c │ └── socketpair.c ├── misc │ ├── Makefile │ ├── Makefile.in │ ├── assert │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ └── __assert.c │ ├── ctype │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── __C_ctype_b.c │ │ ├── __C_ctype_tolower.c │ │ ├── __C_ctype_toupper.c │ │ ├── __ctype_assert.c │ │ ├── __ctype_b_loc.c │ │ ├── __ctype_tolower_loc.c │ │ ├── __ctype_toupper_loc.c │ │ ├── ctype.c │ │ ├── isalnum.c │ │ ├── isalnum_l.c │ │ ├── isalpha.c │ │ ├── isalpha_l.c │ │ ├── isascii.c │ │ ├── isascii_l.c │ │ ├── isblank.c │ │ ├── isblank_l.c │ │ ├── iscntrl.c │ │ ├── iscntrl_l.c │ │ ├── isctype.c │ │ ├── isdigit.c │ │ ├── isdigit_l.c │ │ ├── isgraph.c │ │ ├── isgraph_l.c │ │ ├── islower.c │ │ ├── islower_l.c │ │ ├── isprint.c │ │ ├── isprint_l.c │ │ ├── ispunct.c │ │ ├── ispunct_l.c │ │ ├── isspace.c │ │ ├── isspace_l.c │ │ ├── isupper.c │ │ ├── isupper_l.c │ │ ├── isxdigit.c │ │ ├── isxdigit_l.c │ │ ├── toascii.c │ │ ├── toascii_l.c │ │ ├── tolower.c │ │ ├── tolower_l.c │ │ ├── toupper.c │ │ └── toupper_l.c │ ├── dirent │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── alphasort.c │ │ ├── alphasort64.c │ │ ├── closedir.c │ │ ├── dirfd.c │ │ ├── dirstream.h │ │ ├── opendir.c │ │ ├── readdir.c │ │ ├── readdir64.c │ │ ├── readdir64_r.c │ │ ├── readdir_r.c │ │ ├── rewinddir.c │ │ ├── scandir.c │ │ ├── scandir64.c │ │ ├── seekdir.c │ │ ├── telldir.c │ │ ├── versionsort.c │ │ └── versionsort64.c │ ├── elf │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── dl-core.c │ │ ├── dl-iterate-phdr.c │ │ └── dl-support.c │ ├── error │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── err.c │ │ └── error.c │ ├── file │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── lockf.c │ │ └── lockf64.c │ ├── fnmatch │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── fnmatch.c │ │ ├── fnmatch_loop.c │ │ └── fnmatch_old.c │ ├── fts │ │ ├── Makefile │ │ ├── Makefile.in │ │ └── fts.c │ ├── ftw │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── ftw.c │ │ └── ftw64.c │ ├── glob │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── glob-susv3.c │ │ ├── glob.c │ │ ├── glob64-susv3.c │ │ └── glob64.c │ ├── gnu │ │ ├── Makefile │ │ ├── Makefile.in │ │ └── obstack.c │ ├── internals │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── __errno_location.c │ │ ├── __h_errno_location.c │ │ ├── __uClibc_main.c │ │ ├── errno.c │ │ ├── internal_errno.h │ │ ├── parse_config.c │ │ ├── shared_flat_add_library.c │ │ ├── shared_flat_initfini.c │ │ ├── shared_flat_lib.h │ │ ├── tempname.c │ │ └── tempname.h │ ├── locale │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── __curlocale.c │ │ ├── __locale_mbrtowc_l.c │ │ ├── _locale_init.c │ │ ├── duplocale.c │ │ ├── freelocale.c │ │ ├── locale.c │ │ ├── localeconv.c │ │ ├── newlocale.c │ │ ├── nl_langinfo.c │ │ ├── nl_langinfo_l.c │ │ ├── setlocale.c │ │ └── uselocale.c │ ├── mntent │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ └── mntent.c │ ├── pthread │ │ ├── Makefile │ │ ├── Makefile.in │ │ └── tsd.c │ ├── regex │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── regcomp.c │ │ ├── regex.c │ │ ├── regex_internal.c │ │ ├── regex_internal.h │ │ ├── regex_old.c │ │ └── regexec.c │ ├── search │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── _hsearch_r.c │ │ ├── _lsearch.c │ │ ├── _tsearch.c │ │ ├── hcreate_r.c │ │ ├── hdestroy_r.c │ │ ├── hsearch.c │ │ ├── hsearch_r.c │ │ ├── insque.c │ │ ├── insremque.c │ │ ├── lfind.c │ │ ├── lsearch.c │ │ ├── remque.c │ │ ├── tdelete.c │ │ ├── tdestroy.c │ │ ├── tfind.c │ │ ├── tsearch.c │ │ └── twalk.c │ ├── statfs │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── fstatfs64.c │ │ ├── fstatvfs.c │ │ ├── fstatvfs64.c │ │ ├── internal_statvfs.c │ │ ├── statfs64.c │ │ ├── statvfs.c │ │ └── statvfs64.c │ ├── syslog │ │ ├── Makefile │ │ ├── Makefile.in │ │ └── syslog.c │ ├── sysvipc │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── __syscall_ipc.c │ │ ├── ftok.c │ │ ├── ipc.h │ │ ├── msgctl.c │ │ ├── msgget.c │ │ ├── msgq.c │ │ ├── msgrcv.c │ │ ├── msgsnd.c │ │ ├── sem.c │ │ ├── semctl.c │ │ ├── semget.c │ │ ├── semop.c │ │ ├── semtimedop.c │ │ ├── shm.c │ │ ├── shmat.c │ │ ├── shmctl.c │ │ ├── shmdt.c │ │ └── shmget.c │ ├── time │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── __time_tm.c │ │ ├── _time_localtime_tzi.c │ │ ├── _time_mktime.c │ │ ├── _time_mktime_tzi.c │ │ ├── _time_t2tm.c │ │ ├── adjtime.c │ │ ├── asctime.c │ │ ├── asctime_r.c │ │ ├── clock.c │ │ ├── ctime.c │ │ ├── ctime_r.c │ │ ├── difftime.c │ │ ├── dysize.c │ │ ├── ftime.c │ │ ├── gmtime.c │ │ ├── gmtime_r.c │ │ ├── localtime.c │ │ ├── localtime_r.c │ │ ├── mktime.c │ │ ├── strftime.c │ │ ├── strftime_l.c │ │ ├── strptime.c │ │ ├── strptime_l.c │ │ ├── time.c │ │ ├── timegm.c │ │ ├── tzset.c │ │ ├── wcsftime.c │ │ └── wcsftime_l.c │ ├── ttyent │ │ ├── Makefile │ │ ├── Makefile.in │ │ └── getttyent.c │ ├── utmp │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── utent.c │ │ ├── utxent.c │ │ └── wtent.c │ ├── wchar │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── _wchar_utf8sntowcs.c │ │ ├── _wchar_wcsntoutf8s.c │ │ ├── btowc.c │ │ ├── iconv.c │ │ ├── mbrlen.c │ │ ├── mbrtowc.c │ │ ├── mbsinit.c │ │ ├── mbsnrtowcs.c │ │ ├── mbsrtowcs.c │ │ ├── wchar.c │ │ ├── wcrtomb.c │ │ ├── wcsnrtombs.c │ │ ├── wcsrtombs.c │ │ ├── wcswidth.c │ │ ├── wctob.c │ │ └── wcwidth.c │ ├── wctype │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── _wctype.c │ │ ├── iswalnum.c │ │ ├── iswalnum_l.c │ │ ├── iswalpha.c │ │ ├── iswalpha_l.c │ │ ├── iswblank.c │ │ ├── iswblank_l.c │ │ ├── iswcntrl.c │ │ ├── iswcntrl_l.c │ │ ├── iswctype.c │ │ ├── iswctype_l.c │ │ ├── iswdigit.c │ │ ├── iswdigit_l.c │ │ ├── iswgraph.c │ │ ├── iswgraph_l.c │ │ ├── iswlower.c │ │ ├── iswlower_l.c │ │ ├── iswprint.c │ │ ├── iswprint_l.c │ │ ├── iswpunct.c │ │ ├── iswpunct_l.c │ │ ├── iswspace.c │ │ ├── iswspace_l.c │ │ ├── iswupper.c │ │ ├── iswupper_l.c │ │ ├── iswxdigit.c │ │ ├── iswxdigit_l.c │ │ ├── towctrans.c │ │ ├── towctrans_l.c │ │ ├── towlower.c │ │ ├── towlower_l.c │ │ ├── towupper.c │ │ ├── towupper_l.c │ │ ├── wctrans.c │ │ ├── wctrans_l.c │ │ ├── wctype.c │ │ └── wctype_l.c │ └── wordexp │ │ ├── Makefile │ │ ├── Makefile.in │ │ └── wordexp.c ├── pwd_grp │ ├── .indent.pro │ ├── Makefile │ ├── Makefile.in │ ├── __getgrouplist_internal.c │ ├── __parsegrent.c │ ├── __parsepwent.c │ ├── __parsespent.c │ ├── __pgsreader.c │ ├── fgetgrent.c │ ├── fgetgrent_r.c │ ├── fgetpwent.c │ ├── fgetpwent_r.c │ ├── fgetspent.c │ ├── fgetspent_r.c │ ├── getgrent.c │ ├── getgrent_r.c │ ├── getgrgid.c │ ├── getgrgid_r.c │ ├── getgrnam.c │ ├── getgrnam_r.c │ ├── getgrouplist.c │ ├── getpw.c │ ├── getpwent.c │ ├── getpwent_r.c │ ├── getpwnam.c │ ├── getpwnam_r.c │ ├── getpwuid.c │ ├── getpwuid_r.c │ ├── getspent.c │ ├── getspent_r.c │ ├── getspnam.c │ ├── getspnam_r.c │ ├── initgroups.c │ ├── lckpwdf.c │ ├── putgrent.c │ ├── putpwent.c │ ├── putspent.c │ ├── pwd_grp.c │ ├── pwd_grp_internal.c │ ├── sgetspent.c │ └── sgetspent_r.c ├── signal │ ├── Makefile │ ├── Makefile.in │ ├── allocrtsig.c │ ├── killpg.c │ ├── raise.c │ ├── sigaction.c │ ├── sigaddset.c │ ├── sigandset.c │ ├── sigblock.c │ ├── sigdelset.c │ ├── sigempty.c │ ├── sigfillset.c │ ├── siggetmask.c │ ├── sighold.c │ ├── sigignore.c │ ├── sigintr.c │ ├── sigisempty.c │ ├── sigismem.c │ ├── sigjmp.c │ ├── signal.c │ ├── sigorset.c │ ├── sigpause.c │ ├── sigrelse.c │ ├── sigset-cvt-mask.h │ ├── sigset.c │ ├── sigsetmask.c │ ├── sigsetops.c │ ├── sigsetops.h │ ├── sigwait.c │ └── sysv_signal.c ├── stdio │ ├── .indent.pro │ ├── Makefile │ ├── Makefile.in │ ├── _READ.c │ ├── _WRITE.c │ ├── __fbufsize.c │ ├── __flbf.c │ ├── __fpending.c │ ├── __fpurge.c │ ├── __freadable.c │ ├── __freading.c │ ├── __fsetlocking.c │ ├── __fwritable.c │ ├── __fwriting.c │ ├── __psfs_do_numeric.c │ ├── __psfs_parse_spec.c │ ├── __scan_cookie.c │ ├── _adjust_pos.c │ ├── _cs_funcs.c │ ├── _flushlbf.c │ ├── _fopen.c │ ├── _fpmaxtostr.c │ ├── _fwrite.c │ ├── _load_inttype.c │ ├── _ppfs_init.c │ ├── _ppfs_parsespec.c │ ├── _ppfs_prepargs.c │ ├── _ppfs_setargs.c │ ├── _rfill.c │ ├── _scanf.c │ ├── _stdio.c │ ├── _stdio.h │ ├── _store_inttype.c │ ├── _trans2r.c │ ├── _trans2w.c │ ├── _uintmaxtostr.c │ ├── _vfprintf.c │ ├── _vfprintf_internal.c │ ├── _vfwprintf_internal.c │ ├── _wcommit.c │ ├── _wfwrite.c │ ├── asprintf.c │ ├── clearerr.c │ ├── clearerr_unlocked.c │ ├── ctermid.c │ ├── dprintf.c │ ├── fclose.c │ ├── fcloseall.c │ ├── fdopen.c │ ├── feof.c │ ├── feof_unlocked.c │ ├── ferror.c │ ├── ferror_unlocked.c │ ├── fflush.c │ ├── fflush_unlocked.c │ ├── fgetc.c │ ├── fgetc_unlocked.c │ ├── fgetpos.c │ ├── fgetpos64.c │ ├── fgets.c │ ├── fgets_unlocked.c │ ├── fgetwc.c │ ├── fgetwc_unlocked.c │ ├── fgetws.c │ ├── fgetws_unlocked.c │ ├── fileno.c │ ├── fileno_unlocked.c │ ├── flockfile.c │ ├── fmemopen.c │ ├── fopen.c │ ├── fopen64.c │ ├── fopencookie.c │ ├── fprintf.c │ ├── fputc.c │ ├── fputc_unlocked.c │ ├── fputs.c │ ├── fputs_unlocked.c │ ├── fputwc.c │ ├── fputwc_unlocked.c │ ├── fputws.c │ ├── fputws_unlocked.c │ ├── fread.c │ ├── fread_unlocked.c │ ├── freopen.c │ ├── freopen64.c │ ├── fscanf.c │ ├── fseeko.c │ ├── fseeko64.c │ ├── fsetpos.c │ ├── fsetpos64.c │ ├── ftello.c │ ├── ftello64.c │ ├── ftrylockfile.c │ ├── funlockfile.c │ ├── fwide.c │ ├── fwprintf.c │ ├── fwrite.c │ ├── fwrite_unlocked.c │ ├── fwscanf.c │ ├── getchar.c │ ├── getchar_unlocked.c │ ├── getdelim.c │ ├── getline.c │ ├── gets.c │ ├── getw.c │ ├── getwchar.c │ ├── getwchar_unlocked.c │ ├── old_vfprintf.c │ ├── open_memstream.c │ ├── parse_printf_format.c │ ├── perror.c │ ├── popen.c │ ├── printf.c │ ├── putchar.c │ ├── putchar_unlocked.c │ ├── puts.c │ ├── putw.c │ ├── putwchar.c │ ├── putwchar_unlocked.c │ ├── register_printf_function.c │ ├── remove.c │ ├── rewind.c │ ├── scanf.c │ ├── setbuf.c │ ├── setbuffer.c │ ├── setlinebuf.c │ ├── setvbuf.c │ ├── snprintf.c │ ├── sprintf.c │ ├── sscanf.c │ ├── swprintf.c │ ├── swscanf.c │ ├── tempnam.c │ ├── tmpfile.c │ ├── tmpnam.c │ ├── tmpnam_r.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 │ ├── .indent.pro │ ├── Makefile │ ├── Makefile.in │ ├── __cxa_atexit.c │ ├── __cxa_finalize.c │ ├── __exit_handler.c │ ├── __fp_range_check.c │ ├── __strtofpmax.c │ ├── __strtofpmax_l.c │ ├── __uc_malloc.c │ ├── __wcstofpmax.c │ ├── __wcstofpmax_l.c │ ├── _atexit.c │ ├── _stdlib_mb_cur_max.c │ ├── _stdlib_strto_l.c │ ├── _stdlib_strto_l_l.c │ ├── _stdlib_strto_ll.c │ ├── _stdlib_strto_ll_l.c │ ├── _stdlib_wcsto_l.c │ ├── _stdlib_wcsto_l_l.c │ ├── _stdlib_wcsto_ll.c │ ├── _stdlib_wcsto_ll_l.c │ ├── _strtod.c │ ├── a64l.c │ ├── abort.c │ ├── abs.c │ ├── arc4random.c │ ├── atexit.c │ ├── atof.c │ ├── atoi.c │ ├── atol.c │ ├── atoll.c │ ├── bsd_getpt.c │ ├── bsearch.c │ ├── canonicalize.c │ ├── div.c │ ├── drand48-iter.c │ ├── drand48.c │ ├── drand48_r.c │ ├── erand48.c │ ├── erand48_r.c │ ├── exit.c │ ├── gcvt.c │ ├── getenv.c │ ├── getpt.c │ ├── grantpt.c │ ├── jrand48.c │ ├── jrand48_r.c │ ├── l64a.c │ ├── labs.c │ ├── ldiv.c │ ├── llabs.c │ ├── lldiv.c │ ├── lrand48.c │ ├── lrand48_r.c │ ├── malloc-simple │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── alloc.c │ │ ├── calloc.c │ │ ├── free.c │ │ ├── malloc.c │ │ ├── memalign.c │ │ └── realloc.c │ ├── malloc-standard │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── calloc.c │ │ ├── free.c │ │ ├── mallinfo.c │ │ ├── malloc.c │ │ ├── malloc.h │ │ ├── mallopt.c │ │ ├── memalign.c │ │ └── realloc.c │ ├── malloc │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── calloc.c │ │ ├── free.c │ │ ├── heap.h │ │ ├── heap_alloc.c │ │ ├── heap_alloc_at.c │ │ ├── heap_debug.c │ │ ├── heap_free.c │ │ ├── malloc.c │ │ ├── malloc.h │ │ ├── malloc_debug.c │ │ ├── memalign.c │ │ └── realloc.c │ ├── mblen.c │ ├── mbstowcs.c │ ├── mbtowc.c │ ├── mkdtemp.c │ ├── mkstemp.c │ ├── mkstemp64.c │ ├── mktemp.c │ ├── mrand48.c │ ├── mrand48_r.c │ ├── nrand48.c │ ├── nrand48_r.c │ ├── old_atexit.c │ ├── on_exit.c │ ├── posix_memalign.c │ ├── ptsname.c │ ├── pty-private.h │ ├── qsort.c │ ├── qsort_r.c │ ├── rand.c │ ├── rand_r.c │ ├── random.c │ ├── random_r.c │ ├── realpath.c │ ├── seed48.c │ ├── seed48_r.c │ ├── setenv.c │ ├── srand48.c │ ├── srand48_r.c │ ├── stdlib.c │ ├── strtod.c │ ├── strtod_l.c │ ├── strtof.c │ ├── strtof_l.c │ ├── strtol.c │ ├── strtol_l.c │ ├── strtold.c │ ├── strtold_l.c │ ├── strtoll.c │ ├── strtoll_l.c │ ├── strtoul.c │ ├── strtoul_l.c │ ├── strtoull.c │ ├── strtoull_l.c │ ├── system.c │ ├── unix_grantpt.c │ ├── unlockpt.c │ ├── valloc.c │ ├── wcstod.c │ ├── wcstod_l.c │ ├── wcstof.c │ ├── wcstof_l.c │ ├── wcstol.c │ ├── wcstol_l.c │ ├── wcstold.c │ ├── wcstold_l.c │ ├── wcstoll.c │ ├── wcstoll_l.c │ ├── wcstombs.c │ ├── wcstoul.c │ ├── wcstoul_l.c │ ├── wcstoull.c │ ├── wcstoull_l.c │ └── wctomb.c ├── string │ ├── .indent.pro │ ├── Makefile │ ├── Makefile.in │ ├── __glibc_strerror_r.c │ ├── __xpg_basename.c │ ├── __xpg_strerror_r.c │ ├── _collate.c │ ├── _string.h │ ├── _string_syserrmsgs.c │ ├── _string_syssigmsgs.c │ ├── _syserrmsg.h │ ├── arm │ │ ├── Makefile │ │ ├── _memcpy.S │ │ ├── bcopy.S │ │ ├── bzero.S │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ ├── strcmp.S │ │ └── strlen.S │ ├── avr32 │ │ ├── Makefile │ │ ├── bcopy.S │ │ ├── bzero.S │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ ├── strcmp.S │ │ └── strlen.S │ ├── basename.c │ ├── bcopy.c │ ├── bfin │ │ ├── Makefile │ │ ├── memchr.S │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ └── strcmp.S │ ├── bzero.c │ ├── cris │ │ ├── memcopy.h │ │ ├── memcpy.c │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── strcpy.c │ │ └── strncpy.c │ ├── dirname.c │ ├── ffs.c │ ├── ffsll.c │ ├── frv │ │ ├── Makefile │ │ ├── memcpy.S │ │ └── memset.S │ ├── generic │ │ ├── Makefile │ │ ├── _memcpy_fwd.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcopy.h │ │ ├── memcpy.c │ │ ├── memmem.c │ │ ├── memmove.c │ │ ├── mempcpy.c │ │ ├── memrchr.c │ │ ├── memset.c │ │ ├── pagecopy.h │ │ ├── rawmemchr.c │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strchrnul.c │ │ ├── strcmp.c │ │ ├── strcpy.c │ │ ├── strcspn.c │ │ ├── strlen.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strnlen.c │ │ ├── strrchr.c │ │ ├── strsep.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ └── strtok_r.c │ ├── i386 │ │ ├── Makefile │ │ ├── memchr.c │ │ ├── memcpy.c │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── rawmemchr.c │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strchrnul.c │ │ ├── strcmp.c │ │ ├── strcpy.c │ │ ├── string.h │ │ ├── strlen.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strnlen.c │ │ └── strrchr.c │ ├── ia64 │ │ ├── Makefile │ │ ├── bcopy.S │ │ ├── bzero.S │ │ ├── memccpy.S │ │ ├── memchr.S │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ ├── softpipe.h │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ ├── strncmp.S │ │ ├── strncpy.S │ │ └── sysdep.h │ ├── memccpy.c │ ├── memchr.c │ ├── memcmp.c │ ├── memcpy.c │ ├── memmem.c │ ├── memmove.c │ ├── mempcpy.c │ ├── memrchr.c │ ├── memset.c │ ├── microblaze │ │ ├── Makefile │ │ ├── memcpy.S │ │ └── memmove.S │ ├── mips │ │ ├── Makefile │ │ ├── memcpy.S │ │ ├── memset.S │ │ └── sysdep.h │ ├── powerpc │ │ ├── Makefile │ │ ├── memcpy.c │ │ ├── memmove.c │ │ └── memset.c │ ├── psignal.c │ ├── rawmemchr.c │ ├── sh │ │ ├── memchr.S │ │ ├── sh4 │ │ │ ├── memcpy.S │ │ │ ├── memmove.c │ │ │ ├── memset.S │ │ │ ├── strcpy.S │ │ │ └── strncpy.S │ │ └── strlen.S │ ├── sh64 │ │ ├── Makefile │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── strcpy.S │ │ └── strlen.S │ ├── sparc │ │ ├── Makefile │ │ ├── _glibc_inc.h │ │ ├── bcopy.c │ │ ├── bzero.c │ │ ├── memchr.S │ │ ├── memcpy.S │ │ ├── memmove.c │ │ ├── memset.S │ │ ├── sparc32 │ │ │ ├── memchr.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── sparcv9b │ │ │ │ ├── memchr.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── stpcpy.S │ │ │ │ ├── strcat.S │ │ │ │ ├── strchr.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ └── strlen.S │ │ │ ├── stpcpy.S │ │ │ ├── strcat.S │ │ │ ├── strchr.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ └── strlen.S │ │ ├── sparc64 │ │ │ ├── memchr.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── sparcv9b │ │ │ │ └── memcpy.S │ │ │ ├── stpcpy.S │ │ │ ├── strcat.S │ │ │ ├── strchr.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ └── strlen.S │ │ ├── stpcpy.S │ │ ├── strcat.S │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ └── strrchr.c │ ├── stpcpy.c │ ├── stpncpy.c │ ├── strcasecmp.c │ ├── strcasecmp_l.c │ ├── strcasestr.c │ ├── strcat.c │ ├── strchr.c │ ├── strchrnul.c │ ├── strcmp.c │ ├── strcpy.c │ ├── strcspn.c │ ├── strdup.c │ ├── strerror.c │ ├── strlcat.c │ ├── strlcpy.c │ ├── strlen.c │ ├── strncasecmp.c │ ├── strncasecmp_l.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 │ ├── strxfrm.c │ ├── strxfrm_l.c │ ├── sys_errlist.c │ ├── sys_siglist.c │ ├── wcpcpy.c │ ├── wcpncpy.c │ ├── wcscasecmp.c │ ├── wcscasecmp_l.c │ ├── wcscat.c │ ├── wcschr.c │ ├── wcschrnul.c │ ├── wcscmp.c │ ├── wcscpy.c │ ├── wcscspn.c │ ├── wcsdup.c │ ├── wcslcpy.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 │ ├── wcsxfrm.c │ ├── wcsxfrm_l.c │ ├── wmemchr.c │ ├── wmemcmp.c │ ├── wmemcpy.c │ ├── wmemmove.c │ ├── wmempcpy.c │ ├── wmemset.c │ ├── x86_64 │ │ ├── Makefile │ │ ├── _glibc_inc.h │ │ ├── bzero.S │ │ ├── memcpy.S │ │ ├── mempcpy.S │ │ ├── memset.S │ │ ├── stpcpy.S │ │ ├── strcat.S │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strcspn.S │ │ ├── strlen.S │ │ ├── strpbrk.S │ │ └── strspn.S │ └── xtensa │ │ ├── Makefile │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ └── strncpy.S ├── sysdeps │ ├── Makefile │ ├── Makefile.in │ ├── README │ └── linux │ │ ├── Makefile │ │ ├── Makefile.commonarch │ │ ├── Makefile.in │ │ ├── README │ │ ├── alpha │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── __syscall_error.c │ │ ├── __syscall_rt_sigaction.S │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── dirent.h │ │ │ ├── elfclass.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── inotify.h │ │ │ ├── ioctls.h │ │ │ ├── ipc.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── mathinline.h │ │ │ ├── mman.h │ │ │ ├── msq.h │ │ │ ├── netdb.h │ │ │ ├── resource.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigaction.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── siginfo.h │ │ │ ├── signalfd.h │ │ │ ├── signum.h │ │ │ ├── sigstack.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── syscalls.h │ │ │ ├── termios.h │ │ │ ├── timerfd.h │ │ │ ├── typesizes.h │ │ │ ├── uClibc_arch_features.h │ │ │ ├── uClibc_clk_tck.h │ │ │ ├── uClibc_page.h │ │ │ └── wordsize.h │ │ ├── brk.S │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── divl.S │ │ ├── divq.S │ │ ├── divrem.h │ │ ├── fpu_control.h │ │ ├── pipe.S │ │ ├── reml.S │ │ ├── remq.S │ │ ├── setjmp.S │ │ ├── sigprocmask.c │ │ ├── sys │ │ │ ├── acct.h │ │ │ ├── io.h │ │ │ ├── procfs.h │ │ │ ├── regdef.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ └── syscall.S │ │ ├── arm │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── __syscall_error.c │ │ ├── aeabi_assert.c │ │ ├── aeabi_atexit.c │ │ ├── aeabi_errno_addr.c │ │ ├── aeabi_lcsts.c │ │ ├── aeabi_localeconv.c │ │ ├── aeabi_math.c │ │ ├── aeabi_mb_cur_max.c │ │ ├── aeabi_memclr.c │ │ ├── aeabi_memcpy.c │ │ ├── aeabi_memmove.c │ │ ├── aeabi_memset.c │ │ ├── aeabi_sighandlers.S │ │ ├── aeabi_unwind_cpp_pr1.c │ │ ├── bits │ │ │ ├── arm_asm.h │ │ │ ├── armsigctx.h │ │ │ ├── atomic.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── huge_val.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── find_exidx.c │ │ ├── fpu_control.h │ │ ├── ioperm.c │ │ ├── iopl.c │ │ ├── libc-aeabi_read_tp.S │ │ ├── libc-thumb_atomics.S │ │ ├── mmap.c │ │ ├── mmap64.S │ │ ├── posix_fadvise.c │ │ ├── posix_fadvise64.c │ │ ├── setjmp.S │ │ ├── sigaction.c │ │ ├── sigrestorer.S │ │ ├── sys │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── procfs.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ ├── syscall-eabi.S │ │ ├── syscall.c │ │ ├── sysdep.h │ │ ├── unwind.h │ │ └── vfork.S │ │ ├── avr32 │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── setjmp.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.c │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── mmap.c │ │ ├── prctl.c │ │ ├── setjmp.S │ │ ├── sigaction.c │ │ ├── sigrestorer.S │ │ ├── sys │ │ │ ├── elf.h │ │ │ ├── procfs.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ ├── syscall.S │ │ └── vfork.S │ │ ├── bfin │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── bfin_fixed_code.h │ │ ├── bfin_l1layout.h │ │ ├── bfin_sram.h │ │ ├── bits │ │ │ ├── byteswap.h │ │ │ ├── elf-fdpic.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── huge_val.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── setjmp.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── typesizes.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsdsetjmp.c │ │ ├── cacheflush.c │ │ ├── clone.c │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── crtreloc.c │ │ ├── dma-memcpy.c │ │ ├── setjmp.S │ │ ├── sram-alloc.c │ │ ├── sram-free.c │ │ ├── sys │ │ │ ├── cachectl.h │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── procfs.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ └── sysdep.h │ │ ├── c6x │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── _vfork.S │ │ ├── bits │ │ │ ├── byteswap.h │ │ │ ├── elf-dsbt.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── ipc.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── nan.h │ │ │ ├── poll.h │ │ │ ├── resource.h │ │ │ ├── setjmp.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.s │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── prctl.c │ │ ├── pread_write.c │ │ ├── setjmp.s │ │ ├── sigaction.c │ │ ├── sys │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ └── syscall.c │ │ ├── common │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── __rt_sigtimedwait.c │ │ ├── __rt_sigwaitinfo.c │ │ ├── __socketcall.c │ │ ├── __syscall_fcntl.c │ │ ├── __syscall_fcntl64.c │ │ ├── __syscall_rt_sigaction.c │ │ ├── __syscall_sigaction.c │ │ ├── _exit.c │ │ ├── access.c │ │ ├── acct.c │ │ ├── adjtimex.c │ │ ├── alarm.c │ │ ├── arch_prctl.c │ │ ├── bdflush.c │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── byteswap-common.h │ │ │ ├── byteswap.h │ │ │ ├── cmathcalls.h │ │ │ ├── confname.h │ │ │ ├── dirent.h │ │ │ ├── dlfcn.h │ │ │ ├── elfclass.h │ │ │ ├── endian.h │ │ │ ├── environments.h │ │ │ ├── epoll.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── fenvinline.h │ │ │ ├── getopt.h │ │ │ ├── huge_val.h │ │ │ ├── huge_valf.h │ │ │ ├── huge_vall.h │ │ │ ├── in.h │ │ │ ├── inf.h │ │ │ ├── initspin.h │ │ │ ├── inotify.h │ │ │ ├── ioctl-types.h │ │ │ ├── ioctls.h │ │ │ ├── ipc.h │ │ │ ├── kernel-features.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── local_lim.h │ │ │ ├── locale.h │ │ │ ├── mathcalls.h │ │ │ ├── mathdef.h │ │ │ ├── mathinline.h │ │ │ ├── mman-common.h │ │ │ ├── mman.h │ │ │ ├── mqueue.h │ │ │ ├── msq.h │ │ │ ├── nan.h │ │ │ ├── netdb.h │ │ │ ├── poll.h │ │ │ ├── posix1_lim.h │ │ │ ├── posix2_lim.h │ │ │ ├── posix_opt.h │ │ │ ├── resource.h │ │ │ ├── sched.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigaction.h │ │ │ ├── sigcontext.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── siginfo.h │ │ │ ├── signalfd.h │ │ │ ├── signum.h │ │ │ ├── sigset.h │ │ │ ├── sigstack.h │ │ │ ├── sigthread.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stab.def │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ ├── stdio.h │ │ │ ├── stdio_lim.h │ │ │ ├── syscalls-common.h │ │ │ ├── syscalls.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timerfd.h │ │ │ ├── types.h │ │ │ ├── typesizes.h │ │ │ ├── uClibc_alloc.h │ │ │ ├── uClibc_arch_features.h │ │ │ ├── uClibc_charclass.h │ │ │ ├── uClibc_clk_tck.h │ │ │ ├── uClibc_ctype.h │ │ │ ├── uClibc_fpmax.h │ │ │ ├── uClibc_local_lim.h │ │ │ ├── uClibc_locale.h │ │ │ ├── uClibc_mutex.h │ │ │ ├── uClibc_page.h │ │ │ ├── uClibc_pthread.h │ │ │ ├── uClibc_stdio.h │ │ │ ├── uClibc_touplow.h │ │ │ ├── uClibc_uintmaxtostr.h │ │ │ ├── uClibc_uwchar.h │ │ │ ├── uClibc_va_copy.h │ │ │ ├── uio.h │ │ │ ├── ustat.h │ │ │ ├── utmp.h │ │ │ ├── utmpx.h │ │ │ ├── utsname.h │ │ │ ├── waitflags.h │ │ │ ├── waitstatus.h │ │ │ ├── wchar.h │ │ │ ├── wordsize.h │ │ │ └── xopen_lim.h │ │ ├── brk.c │ │ ├── capget.c │ │ ├── capset.c │ │ ├── chdir.c │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── chroot.c │ │ ├── clock_getres.c │ │ ├── clock_gettime.c │ │ ├── clock_settime.c │ │ ├── close.c │ │ ├── cmsg_nxthdr.c │ │ ├── creat.c │ │ ├── creat64.c │ │ ├── create_module.c │ │ ├── delete_module.c │ │ ├── dl-osinfo.h │ │ ├── dup.c │ │ ├── dup2.c │ │ ├── epoll.c │ │ ├── eventfd.c │ │ ├── execve.c │ │ ├── faccessat.c │ │ ├── fchdir.c │ │ ├── fchmod.c │ │ ├── fchmodat.c │ │ ├── fchown.c │ │ ├── fchownat.c │ │ ├── fdatasync.c │ │ ├── flock.c │ │ ├── fork.c │ │ ├── fpu_control.h │ │ ├── fstat.c │ │ ├── fstat64.c │ │ ├── fstatat.c │ │ ├── fstatat64.c │ │ ├── fstatfs.c │ │ ├── fsync.c │ │ ├── ftruncate.c │ │ ├── ftruncate64.c │ │ ├── futimens.c │ │ ├── futimesat.c │ │ ├── get_kernel_syms.c │ │ ├── getcwd.c │ │ ├── getdents.c │ │ ├── getdents64.c │ │ ├── getdirname.c │ │ ├── getdomainname.c │ │ ├── getdtablesize.c │ │ ├── getegid.c │ │ ├── geteuid.c │ │ ├── getgid.c │ │ ├── getgroups.c │ │ ├── gethostname.c │ │ ├── getitimer.c │ │ ├── getpagesize.c │ │ ├── getpgid.c │ │ ├── getpgrp.c │ │ ├── getpid.c │ │ ├── getppid.c │ │ ├── getpriority.c │ │ ├── getresgid.c │ │ ├── getresuid.c │ │ ├── getrlimit.c │ │ ├── getrlimit64.c │ │ ├── getrusage.c │ │ ├── getsid.c │ │ ├── gettimeofday.c │ │ ├── getuid.c │ │ ├── hp-timing.h │ │ ├── init_module.c │ │ ├── inotify.c │ │ ├── ioctl.c │ │ ├── ioperm.c │ │ ├── iopl.c │ │ ├── kill.c │ │ ├── klogctl.c │ │ ├── lchown.c │ │ ├── libgcc_s.h │ │ ├── link.c │ │ ├── linkat.c │ │ ├── llseek.c │ │ ├── longjmp.c │ │ ├── lseek.c │ │ ├── lstat.c │ │ ├── lstat64.c │ │ ├── lutimes.c │ │ ├── madvise.c │ │ ├── mincore.c │ │ ├── mkdir.c │ │ ├── mkdirat.c │ │ ├── mkfifo.c │ │ ├── mkfifoat.c │ │ ├── mknod.c │ │ ├── mknodat.c │ │ ├── mlock.c │ │ ├── mlockall.c │ │ ├── mmap.c │ │ ├── mmap64.c │ │ ├── modify_ldt.c │ │ ├── mount.c │ │ ├── mprotect.c │ │ ├── mremap.c │ │ ├── msync.c │ │ ├── munlock.c │ │ ├── munlockall.c │ │ ├── munmap.c │ │ ├── nanosleep.c │ │ ├── nice.c │ │ ├── noophooks.c │ │ ├── not-cancel.h │ │ ├── ntp_gettime.c │ │ ├── open.c │ │ ├── open64.c │ │ ├── openat.c │ │ ├── openat64.c │ │ ├── pause.c │ │ ├── personality.c │ │ ├── pipe.c │ │ ├── pipe2.c │ │ ├── pivot_root.c │ │ ├── poll.c │ │ ├── posix_fadvise.c │ │ ├── posix_fadvise64.c │ │ ├── ppoll.c │ │ ├── prctl.c │ │ ├── pread_write.c │ │ ├── pselect.c │ │ ├── ptrace.c │ │ ├── query_module.c │ │ ├── quotactl.c │ │ ├── read.c │ │ ├── readahead.c │ │ ├── readlink.c │ │ ├── readlinkat.c │ │ ├── readv.c │ │ ├── reboot.c │ │ ├── remap_file_pages.c │ │ ├── rename.c │ │ ├── renameat.c │ │ ├── rmdir.c │ │ ├── sbrk.c │ │ ├── sched_cpucount.c │ │ ├── sched_get_priority_max.c │ │ ├── sched_get_priority_min.c │ │ ├── sched_getaffinity.c │ │ ├── sched_getcpu.c │ │ ├── sched_getparam.c │ │ ├── sched_getscheduler.c │ │ ├── sched_rr_get_interval.c │ │ ├── sched_setaffinity.c │ │ ├── sched_setparam.c │ │ ├── sched_setscheduler.c │ │ ├── sched_yield.c │ │ ├── select.c │ │ ├── sendfile.c │ │ ├── sendfile64.c │ │ ├── setdomainname.c │ │ ├── setegid.c │ │ ├── seteuid.c │ │ ├── setfsgid.c │ │ ├── setfsuid.c │ │ ├── setgid.c │ │ ├── setgroups.c │ │ ├── sethostname.c │ │ ├── setitimer.c │ │ ├── setpgid.c │ │ ├── setpgrp.c │ │ ├── setpriority.c │ │ ├── setregid.c │ │ ├── setresgid.c │ │ ├── setresuid.c │ │ ├── setreuid.c │ │ ├── setrlimit.c │ │ ├── setrlimit64.c │ │ ├── setsid.c │ │ ├── settimeofday.c │ │ ├── setuid.c │ │ ├── sigaltstack.c │ │ ├── signalfd.c │ │ ├── sigpending.c │ │ ├── sigprocmask.c │ │ ├── sigqueue.c │ │ ├── sigsuspend.c │ │ ├── splice.c │ │ ├── ssp-local.c │ │ ├── ssp.c │ │ ├── stat.c │ │ ├── stat64.c │ │ ├── statfs.c │ │ ├── stime.c │ │ ├── stubs.c │ │ ├── swapoff.c │ │ ├── swapon.c │ │ ├── symlink.c │ │ ├── symlinkat.c │ │ ├── sync.c │ │ ├── sync_file_range.c │ │ ├── sys │ │ │ ├── acct.h │ │ │ ├── epoll.h │ │ │ ├── eventfd.h │ │ │ ├── inotify.h │ │ │ ├── prctl.h │ │ │ ├── ptrace.h │ │ │ ├── signalfd.h │ │ │ ├── timerfd.h │ │ │ └── user.h │ │ ├── syscall.c │ │ ├── syscalls.h │ │ ├── sysctl.c │ │ ├── sysdep.h │ │ ├── sysfs.c │ │ ├── sysinfo.c │ │ ├── tee.c │ │ ├── time.c │ │ ├── timerfd.c │ │ ├── times.c │ │ ├── truncate.c │ │ ├── truncate64.c │ │ ├── ulimit.c │ │ ├── umask.c │ │ ├── umount.c │ │ ├── umount2.c │ │ ├── uname.c │ │ ├── unlink.c │ │ ├── unlinkat.c │ │ ├── unshare.c │ │ ├── unwind.h │ │ ├── uselib.c │ │ ├── ustat.c │ │ ├── utime.c │ │ ├── utimensat.c │ │ ├── utimes.c │ │ ├── vfork.c │ │ ├── vhangup.c │ │ ├── vmsplice.c │ │ ├── wait.c │ │ ├── wait3.c │ │ ├── wait4.c │ │ ├── waitid.c │ │ ├── waitpid.c │ │ ├── write.c │ │ ├── writev.c │ │ ├── xattr.c │ │ ├── xstatconv.c │ │ └── xstatconv.h │ │ ├── cris │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __init_brk.c │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── byteswap.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── setjmp.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── termios.h │ │ │ ├── uClibc_arch_features.h │ │ │ ├── uClibc_page.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fork.c │ │ ├── libc.map │ │ ├── sbrk.c │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── procfs.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ ├── syscall.S │ │ ├── sysdep.S │ │ ├── sysdep.h │ │ └── vfork.S │ │ ├── e1 │ │ ├── Makefile │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── fenvinline.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── proto.h │ │ │ ├── setjmp.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ ├── unistd.h │ │ │ └── wordsize.h │ │ ├── crt0.S │ │ ├── crt1.c │ │ ├── longjmp.c │ │ ├── setjmp.c │ │ ├── sys │ │ │ ├── procfs.h │ │ │ ├── reg.h │ │ │ └── ucontext.h │ │ ├── syscalls.c │ │ └── vfork.c │ │ ├── frv │ │ ├── Makefile │ │ ├── __init_brk.c │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── elf-fdpic.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── setjmp.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ ├── uClibc_page.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── clone.S │ │ ├── crt0.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── crtreloc.c │ │ ├── dl-iterate-phdr.c │ │ ├── fstat.c │ │ ├── fstat64.c │ │ ├── lstat.c │ │ ├── lstat64.c │ │ ├── mmap.c │ │ ├── sbrk.c │ │ ├── setjmp.S │ │ ├── stat.c │ │ ├── stat64.c │ │ ├── sys │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ └── ucontext.h │ │ ├── syscall.c │ │ ├── sysdep.c │ │ ├── vfork.S │ │ └── xstatconv.c │ │ ├── h8300 │ │ ├── Makefile │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── byteswap.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── setjmp.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt0.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── float.h │ │ ├── ptrace.c │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── procfs.h │ │ │ └── ucontext.h │ │ └── vfork.S │ │ ├── hppa │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── __syscall_error.c │ │ ├── add_n.s │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── ipc.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mman.h │ │ │ ├── setjmp.h │ │ │ ├── sigaction.h │ │ │ ├── signum.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── lshift.s │ │ ├── mmap.c │ │ ├── rshift.s │ │ ├── setjmp.S │ │ ├── sub_n.s │ │ ├── sys │ │ │ ├── procfs.h │ │ │ └── ucontext.h │ │ ├── syscall.c │ │ └── udiv_qrnnd.s │ │ ├── i386 │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── __syscall_error.c │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── byteswap.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── mathinline.h │ │ │ ├── select.h │ │ │ ├── setjmp.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ ├── wchar.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fpu_control.h │ │ ├── mmap.S │ │ ├── mmap64.S │ │ ├── posix_fadvise64.S │ │ ├── setjmp.S │ │ ├── sigaction.c │ │ ├── sync_file_range.S │ │ ├── sys │ │ │ ├── debugreg.h │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── perm.h │ │ │ ├── procfs.h │ │ │ ├── reg.h │ │ │ ├── ucontext.h │ │ │ ├── user.h │ │ │ └── vm86.h │ │ ├── syscall.S │ │ ├── sysdep.h │ │ └── vfork.S │ │ ├── i960 │ │ ├── AUTHORS │ │ ├── Makefile │ │ ├── README │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── setjmp.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── clone.S │ │ ├── crt0.S │ │ ├── mmap.S │ │ ├── setjmp.S │ │ ├── specs.uclinux.gcc-2.95.i960-intel-coff │ │ ├── sys │ │ │ ├── procfs.h │ │ │ └── ucontext.h │ │ └── vfork.S │ │ ├── ia64 │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── __syscall_error.c │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── byteswap.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── ipc.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── mathinline.h │ │ │ ├── mman.h │ │ │ ├── msq.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigaction.h │ │ │ ├── sigcontext.h │ │ │ ├── siginfo.h │ │ │ ├── sigstack.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.S │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone2.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fork.S │ │ ├── pipe.S │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── io.h │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ ├── syscall.S │ │ ├── sysdep.h │ │ └── vfork.S │ │ ├── m68k │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── README.m68k │ │ ├── __longjmp.S │ │ ├── __syscall_error.c │ │ ├── bits │ │ │ ├── byteswap.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── mathinline.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ ├── uClibc_page.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── float.h │ │ ├── fpu_control.h │ │ ├── m68k_pic.S │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── procfs.h │ │ │ ├── reg.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ └── vfork.S │ │ ├── microblaze │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ ├── uClibc_page.h │ │ │ └── wordsize.h │ │ ├── clone.c │ │ ├── crt0.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fixdfsi.c │ │ ├── floatlib.h │ │ ├── mmap.c │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ └── vfork.S │ │ ├── mips │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.c │ │ ├── __syscall_error.c │ │ ├── _test_and_set.c │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── dirent.h │ │ │ ├── dlfcn.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── inotify.h │ │ │ ├── ioctl-types.h │ │ │ ├── ipc.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── mman.h │ │ │ ├── msq.h │ │ │ ├── poll.h │ │ │ ├── resource.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigaction.h │ │ │ ├── sigcontext.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── siginfo.h │ │ │ ├── signalfd.h │ │ │ ├── signum.h │ │ │ ├── sigstack.h │ │ │ ├── socket.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── syscalls.h │ │ │ ├── termios.h │ │ │ ├── timerfd.h │ │ │ ├── uClibc_arch_features.h │ │ │ ├── uClibc_page.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── cacheflush.c │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fpu_control.h │ │ ├── mmap.c │ │ ├── pipe.S │ │ ├── posix_fadvise.c │ │ ├── posix_fadvise64.c │ │ ├── pread_write.c │ │ ├── readahead.c │ │ ├── setjmp.S │ │ ├── setjmp_aux.c │ │ ├── sgidefs.h │ │ ├── sigaction.c │ │ ├── sys │ │ │ ├── asm.h │ │ │ ├── cachectl.h │ │ │ ├── fpregdef.h │ │ │ ├── procfs.h │ │ │ ├── regdef.h │ │ │ ├── sysmips.h │ │ │ ├── tas.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ ├── syscall.S │ │ ├── syscall_error.S │ │ ├── sysdep.h │ │ ├── sysmips.c │ │ └── vfork.S │ │ ├── nios │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── NM_Macros.S │ │ ├── NR_Math1.S │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── setjmp.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crtbegin.c │ │ ├── crtend.c │ │ ├── fpu_control.h │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── procfs.h │ │ │ └── ucontext.h │ │ └── vfork.S │ │ ├── nios2 │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── setjmp.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ ├── uClibc_page.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── clone.c │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fpu_control.h │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── procfs.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ ├── syscall.c │ │ └── vfork.S │ │ ├── powerpc │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── README.bits │ │ ├── __longjmp.S │ │ ├── __syscall_error.c │ │ ├── __uClibc_syscall.S │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── fenvinline.h │ │ │ ├── ioctl-types.h │ │ │ ├── ipc.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── mathinline.h │ │ │ ├── mman.h │ │ │ ├── msq.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── syscalls.h │ │ │ ├── termios.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.S │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fenv.h │ │ ├── fpu_control.h │ │ ├── ioctl.c │ │ ├── posix_fadvise.c │ │ ├── posix_fadvise64.c │ │ ├── powerpc32 │ │ │ └── sysdep.h │ │ ├── powerpc64 │ │ │ └── sysdep.h │ │ ├── ppc_asm.h │ │ ├── pread_write.c │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ ├── syscall.S │ │ ├── sysdep.h │ │ └── vfork.S │ │ ├── sh │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── ___fpscr_values.S │ │ ├── __init_brk.c │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── huge_val.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── cacheflush.c │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fpu_control.h │ │ ├── mmap.c │ │ ├── pipe.c │ │ ├── pread_write.c │ │ ├── sbrk.c │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── io.h │ │ │ ├── procfs.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ ├── syscall_error.S │ │ ├── sysdep.h │ │ └── vfork.S │ │ ├── sh64 │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __init_brk.c │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── sbrk.c │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── procfs.h │ │ │ └── ucontext.h │ │ └── syscall.c │ │ ├── sparc │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── __syscall_error.c │ │ ├── _math_inc.h │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── inotify.h │ │ │ ├── ioctls.h │ │ │ ├── ipc.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── mathinline.h │ │ │ ├── mman.h │ │ │ ├── msq.h │ │ │ ├── poll.h │ │ │ ├── resource.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigaction.h │ │ │ ├── sigcontext.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── siginfo.h │ │ │ ├── signalfd.h │ │ │ ├── signum.h │ │ │ ├── sigstack.h │ │ │ ├── socket.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── syscalls.h │ │ │ ├── termios.h │ │ │ ├── timerfd.h │ │ │ ├── typesizes.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fork.S │ │ ├── fpu_control.h │ │ ├── pipe.S │ │ ├── qp_ops.c │ │ ├── rem.S │ │ ├── sdiv.S │ │ ├── setjmp.S │ │ ├── sigaction.c │ │ ├── soft-fp │ │ │ ├── double.h │ │ │ ├── extended.h │ │ │ ├── longlong.h │ │ │ ├── mp_clz_tab.c │ │ │ ├── op-1.h │ │ │ ├── op-2.h │ │ │ ├── op-4.h │ │ │ ├── op-8.h │ │ │ ├── op-common.h │ │ │ ├── q_add.c │ │ │ ├── q_cmp.c │ │ │ ├── q_cmpe.c │ │ │ ├── q_div.c │ │ │ ├── q_dtoq.c │ │ │ ├── q_feq.c │ │ │ ├── q_fge.c │ │ │ ├── q_fgt.c │ │ │ ├── q_fle.c │ │ │ ├── q_flt.c │ │ │ ├── q_fne.c │ │ │ ├── q_itoq.c │ │ │ ├── q_lltoq.c │ │ │ ├── q_mul.c │ │ │ ├── q_neg.c │ │ │ ├── q_qtod.c │ │ │ ├── q_qtoi.c │ │ │ ├── q_qtoll.c │ │ │ ├── q_qtos.c │ │ │ ├── q_qtou.c │ │ │ ├── q_qtoull.c │ │ │ ├── q_sqrt.c │ │ │ ├── q_stoq.c │ │ │ ├── q_sub.c │ │ │ ├── q_ulltoq.c │ │ │ ├── q_util.c │ │ │ ├── q_utoq.c │ │ │ ├── quad.h │ │ │ ├── sfp-machine.h │ │ │ ├── single.h │ │ │ └── soft-fp.h │ │ ├── sparcv7 │ │ │ ├── rem.S │ │ │ ├── sdiv.S │ │ │ ├── udiv.S │ │ │ ├── umul.S │ │ │ └── urem.S │ │ ├── sparcv8 │ │ │ ├── rem.S │ │ │ ├── sdiv.S │ │ │ ├── udiv.S │ │ │ ├── umul.S │ │ │ └── urem.S │ │ ├── sparcv9 │ │ │ ├── clone.S │ │ │ ├── rem.S │ │ │ ├── sdiv.S │ │ │ ├── udiv.S │ │ │ ├── umul.S │ │ │ └── urem.S │ │ ├── sys │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ ├── syscall.S │ │ ├── sysdep.h │ │ ├── udiv.S │ │ ├── umul.S │ │ ├── urem.S │ │ └── vfork.S │ │ ├── v850 │ │ ├── Makefile │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── byteswap.h │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── poll.h │ │ │ ├── select.h │ │ │ ├── setjmp.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── clinkage.h │ │ ├── clone.c │ │ ├── crt0.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── mmap.c │ │ ├── setjmp.S │ │ ├── sys │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ └── ucontext.h │ │ ├── syscall.c │ │ └── vfork.S │ │ ├── vax │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── _setjmp.S │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── ipc.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── machine-gmon.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigcontext.h │ │ │ ├── stackinfo.h │ │ │ ├── statfs.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── mmap.c │ │ ├── setjmp.S │ │ └── sys │ │ │ ├── procfs.h │ │ │ └── ucontext.h │ │ ├── x86_64 │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── __syscall_error.c │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── byteswap.h │ │ │ ├── endian.h │ │ │ ├── environments.h │ │ │ ├── epoll.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── mathinline.h │ │ │ ├── mman.h │ │ │ ├── msq.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigcontext.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fpu_control.h │ │ ├── mmap.c │ │ ├── sched_getcpu.S │ │ ├── setjmp.S │ │ ├── sigaction.c │ │ ├── sys │ │ │ ├── debugreg.h │ │ │ ├── io.h │ │ │ ├── perm.h │ │ │ ├── procfs.h │ │ │ ├── reg.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ ├── syscall.S │ │ ├── sysdep.h │ │ └── vfork.S │ │ └── xtensa │ │ ├── Makefile │ │ ├── Makefile.arch │ │ ├── __longjmp.S │ │ ├── __syscall_error.c │ │ ├── bits │ │ ├── endian.h │ │ ├── fcntl.h │ │ ├── ipc.h │ │ ├── kernel_stat.h │ │ ├── kernel_types.h │ │ ├── mathdef.h │ │ ├── mman.h │ │ ├── msq.h │ │ ├── setjmp.h │ │ ├── shm.h │ │ ├── sigcontextinfo.h │ │ ├── stackinfo.h │ │ ├── stat.h │ │ ├── syscalls.h │ │ ├── uClibc_arch_features.h │ │ ├── uClibc_page.h │ │ ├── wordsize.h │ │ └── xtensa-config.h │ │ ├── brk.c │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── clone.S │ │ ├── crt1.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fork.c │ │ ├── mmap.S │ │ ├── posix_fadvise.c │ │ ├── posix_fadvise64.c │ │ ├── pread_write.c │ │ ├── setjmp.S │ │ ├── sigaction.c │ │ ├── sigrestorer.S │ │ ├── sys │ │ ├── procfs.h │ │ ├── ptrace.h │ │ └── ucontext.h │ │ ├── syscall.S │ │ ├── sysdep.h │ │ ├── vfork.S │ │ └── windowspill.S ├── termios │ ├── .indent.pro │ ├── Makefile │ ├── Makefile.in │ ├── cfmakeraw.c │ ├── cfsetspeed.c │ ├── isatty.c │ ├── kernel_termios.h │ ├── speed.c │ ├── tcdrain.c │ ├── tcflow.c │ ├── tcflush.c │ ├── tcgetattr.c │ ├── tcgetpgrp.c │ ├── tcgetsid.c │ ├── tcsendbrk.c │ ├── tcsetattr.c │ ├── tcsetpgrp.c │ └── ttyname.c └── unistd │ ├── .indent.pro │ ├── Makefile │ ├── Makefile.in │ ├── __exec_alloc.c │ ├── confstr.c │ ├── daemon.c │ ├── exec.c │ ├── execl.c │ ├── execle.c │ ├── execlp.c │ ├── execv.c │ ├── execvp.c │ ├── fpathconf.c │ ├── getlogin.c │ ├── getopt-susv3.c │ ├── getopt.c │ ├── getopt_int.h │ ├── getopt_long-simple.c │ ├── getpass.c │ ├── getsubopt-susv3.c │ ├── getsubopt.c │ ├── pathconf.c │ ├── sleep.c │ ├── swab.c │ ├── sysconf.c │ ├── ualarm.c │ ├── usershell.c │ └── usleep.c ├── libcrypt ├── Makefile ├── Makefile.in ├── crypt.c ├── crypt_stub.c ├── des.c ├── libcrypt.h ├── md5.c ├── sha256-crypt.c ├── sha256.c ├── sha256.h ├── sha512-crypt.c ├── sha512.c └── sha512.h ├── libintl ├── Makefile ├── Makefile.in └── intl.c ├── libm ├── Makefile ├── Makefile.in ├── README ├── carg.c ├── cexp.c ├── e_acos.c ├── e_acosh.c ├── e_asin.c ├── e_atan2.c ├── e_atanh.c ├── e_cosh.c ├── e_exp.c ├── e_fmod.c ├── e_hypot.c ├── e_j0.c ├── e_j1.c ├── e_jn.c ├── e_lgamma_r.c ├── e_log.c ├── e_log10.c ├── e_log2.c ├── e_pow.c ├── e_rem_pio2.c ├── e_remainder.c ├── e_scalb.c ├── e_sinh.c ├── e_sqrt.c ├── float_wrappers.c ├── i386 │ ├── Makefile.arch │ ├── fclrexcpt.c │ ├── fedisblxcpt.c │ ├── feenablxcpt.c │ ├── fegetenv.c │ ├── fegetexcept.c │ ├── fegetround.c │ ├── feholdexcpt.c │ ├── fesetenv.c │ ├── fesetround.c │ ├── feupdateenv.c │ ├── fgetexcptflg.c │ ├── fraiseexcpt.c │ ├── fsetexcptflg.c │ └── ftestexcept.c ├── k_cos.c ├── k_rem_pio2.c ├── k_sin.c ├── k_standard.c ├── k_tan.c ├── ldouble_wrappers.c ├── math_private.h ├── nan.c ├── powerpc │ ├── classic │ │ └── Makefile.arch │ └── e500 │ │ ├── Makefile.arch │ │ ├── README.txt │ │ ├── fpu │ │ ├── Makefile.arch │ │ ├── fclrexcpt.c │ │ ├── fe_nomask.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fenv_const.c │ │ ├── fenv_libc.h │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ └── ftestexcept.c │ │ └── spe-raise.c ├── s_asinh.c ├── s_atan.c ├── s_cbrt.c ├── s_ceil.c ├── s_copysign.c ├── s_cos.c ├── s_erf.c ├── s_expm1.c ├── s_fabs.c ├── s_fdim.c ├── s_finite.c ├── s_finitef.c ├── s_floor.c ├── s_fma.c ├── s_fmax.c ├── s_fmin.c ├── s_fpclassify.c ├── s_fpclassifyf.c ├── s_frexp.c ├── s_ilogb.c ├── s_isinf.c ├── s_isinff.c ├── s_isnan.c ├── s_isnanf.c ├── s_ldexp.c ├── s_lib_version.c ├── s_llrint.c ├── s_llround.c ├── s_log1p.c ├── s_logb.c ├── s_lrint.c ├── s_lround.c ├── s_matherr.c ├── s_modf.c ├── s_nextafter.c ├── s_nextafterf.c ├── s_remquo.c ├── s_rint.c ├── s_round.c ├── s_scalbn.c ├── s_signbit.c ├── s_signbitf.c ├── s_signgam.c ├── s_significand.c ├── s_sin.c ├── s_tan.c ├── s_tanh.c ├── s_trunc.c ├── sh │ └── sh4 │ │ ├── Makefile.arch │ │ ├── feholdexcpt.c │ │ ├── fesetenv.c │ │ ├── s_lrintf.S │ │ └── s_lroundf.S ├── sincos.c ├── w_cabs.c └── w_exp2.c ├── libnsl ├── Makefile ├── Makefile.in └── nsl.c ├── libpthread ├── Makefile ├── Makefile.in ├── linuxthreads.old │ ├── Makefile │ ├── Makefile.in │ ├── attr.c │ ├── cancel.c │ ├── condvar.c │ ├── debug.h │ ├── errno.c │ ├── events.c │ ├── forward.c │ ├── internals.h │ ├── join.c │ ├── libc_pthread_init.c │ ├── linuxthreads.texi │ ├── locale.c │ ├── lockfile.c │ ├── manager.c │ ├── mutex.c │ ├── oldsemaphore.c │ ├── pt-machine.c │ ├── ptfork.c │ ├── pthread.c │ ├── ptlongjmp.c │ ├── queue.h │ ├── restart.h │ ├── rwlock.c │ ├── semaphore.c │ ├── semaphore.h │ ├── signals.c │ ├── specific.c │ ├── spinlock.c │ ├── spinlock.h │ ├── sysdeps │ │ ├── alpha │ │ │ └── pt-machine.h │ │ ├── arm │ │ │ └── pt-machine.h │ │ ├── avr32 │ │ │ └── pt-machine.h │ │ ├── bfin │ │ │ └── pt-machine.h │ │ ├── c6x │ │ │ └── pt-machine.h │ │ ├── cris │ │ │ └── pt-machine.h │ │ ├── frv │ │ │ └── pt-machine.h │ │ ├── h8300 │ │ │ └── pt-machine.h │ │ ├── i386 │ │ │ ├── pt-machine.h │ │ │ ├── tls.h │ │ │ └── useldt.h │ │ ├── ia64 │ │ │ ├── pt-machine.h │ │ │ └── tls.h │ │ ├── m68k │ │ │ └── pt-machine.h │ │ ├── microblaze │ │ │ ├── pt-machine.h │ │ │ └── sigcontextinfo.h │ │ ├── mips │ │ │ └── pt-machine.h │ │ ├── nios │ │ │ └── pt-machine.h │ │ ├── nios2 │ │ │ └── pt-machine.h │ │ ├── powerpc │ │ │ └── pt-machine.h │ │ ├── pthread │ │ │ ├── bits │ │ │ │ ├── libc-lock.h │ │ │ │ ├── libc-tsd.h │ │ │ │ └── pthreadtypes.h │ │ │ ├── not-cancel.h │ │ │ ├── pthread-functions.h │ │ │ ├── pthread.h │ │ │ └── tls.h │ │ ├── sh │ │ │ ├── pt-machine.h │ │ │ └── tls.h │ │ ├── sh64 │ │ │ ├── Makefile.arch │ │ │ ├── pt-machine.c │ │ │ └── pt-machine.h │ │ ├── sparc │ │ │ ├── pt-machine.h │ │ │ ├── sparc32 │ │ │ │ └── pt-machine.h │ │ │ ├── sparc64 │ │ │ │ └── pt-machine.h │ │ │ └── tcb-offsets.h │ │ ├── v850 │ │ │ └── pt-machine.h │ │ ├── x86_64 │ │ │ ├── pt-machine.h │ │ │ └── tls.h │ │ └── xtensa │ │ │ └── pt-machine.h │ └── wrapsyscall.c ├── linuxthreads.old_db │ ├── Banner │ ├── Makefile │ ├── Makefile.in │ ├── Versions │ ├── proc_service.h │ ├── td_init.c │ ├── td_log.c │ ├── td_symbol_list.c │ ├── td_ta_clear_event.c │ ├── td_ta_delete.c │ ├── td_ta_enable_stats.c │ ├── td_ta_event_addr.c │ ├── td_ta_event_getmsg.c │ ├── td_ta_get_nthreads.c │ ├── td_ta_get_ph.c │ ├── td_ta_get_stats.c │ ├── td_ta_map_id2thr.c │ ├── td_ta_map_lwp2thr.c │ ├── td_ta_new.c │ ├── td_ta_reset_stats.c │ ├── td_ta_set_event.c │ ├── td_ta_setconcurrency.c │ ├── td_ta_thr_iter.c │ ├── td_ta_tsd_iter.c │ ├── td_thr_clear_event.c │ ├── td_thr_dbresume.c │ ├── td_thr_dbsuspend.c │ ├── td_thr_event_enable.c │ ├── td_thr_event_getmsg.c │ ├── td_thr_get_info.c │ ├── td_thr_getfpregs.c │ ├── td_thr_getgregs.c │ ├── td_thr_getxregs.c │ ├── td_thr_getxregsize.c │ ├── td_thr_set_event.c │ ├── td_thr_setfpregs.c │ ├── td_thr_setgregs.c │ ├── td_thr_setprio.c │ ├── td_thr_setsigpending.c │ ├── td_thr_setxregs.c │ ├── td_thr_sigsetmask.c │ ├── td_thr_tls_get_addr.c │ ├── td_thr_tsd.c │ ├── td_thr_validate.c │ ├── thread_db.h │ └── thread_dbP.h ├── linuxthreads │ ├── .cvsignore │ ├── Makefile │ ├── Makefile.in │ ├── alloca_cutoff.c │ ├── attr.c │ ├── barrier.c │ ├── cancel.c │ ├── condvar.c │ ├── descr.h │ ├── errno.c │ ├── events.c │ ├── forward.c │ ├── internals.h │ ├── join.c │ ├── libc-cancellation.c │ ├── libc_pthread_init.c │ ├── lockfile.c │ ├── manager.c │ ├── mutex.c │ ├── pt-machine.c │ ├── ptcleanup.c │ ├── ptclock_gettime.c │ ├── ptclock_settime.c │ ├── ptfork.c │ ├── pthandles.c │ ├── pthread.c │ ├── pthread_atfork.c │ ├── pthread_setegid.c │ ├── pthread_seteuid.c │ ├── pthread_setgid.c │ ├── pthread_setregid.c │ ├── pthread_setresgid.c │ ├── pthread_setresuid.c │ ├── pthread_setreuid.c │ ├── pthread_setuid.c │ ├── queue.h │ ├── restart.h │ ├── rwlock.c │ ├── semaphore.c │ ├── semaphore.h │ ├── sighandler.c │ ├── signals.c │ ├── specific.c │ ├── spinlock.c │ ├── spinlock.h │ └── sysdeps │ │ ├── alpha │ │ ├── elf │ │ │ └── pt-initfini.c │ │ ├── pspinlock.c │ │ ├── pt-machine.h │ │ └── tls.h │ │ ├── arm │ │ ├── pspinlock.c │ │ ├── pt-machine.h │ │ ├── sysdep-cancel.h │ │ ├── sysdep.h │ │ └── tls.h │ │ ├── avr32 │ │ └── pt-machine.h │ │ ├── cris │ │ ├── pspinlock.c │ │ └── pt-machine.h │ │ ├── hppa │ │ ├── pspinlock.c │ │ └── pt-machine.h │ │ ├── i386 │ │ ├── i686 │ │ │ └── pt-machine.h │ │ ├── pspinlock.c │ │ ├── pt-machine.h │ │ ├── tcb-offsets.sym │ │ ├── tls.h │ │ └── useldt.h │ │ ├── ia64 │ │ ├── pspinlock.c │ │ ├── pt-machine.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ │ ├── m68k │ │ ├── pspinlock.c │ │ └── pt-machine.h │ │ ├── mips │ │ ├── pspinlock.c │ │ ├── pt-machine.h │ │ └── tls.h │ │ ├── powerpc │ │ ├── powerpc32 │ │ │ ├── pspinlock.c │ │ │ └── pt-machine.h │ │ ├── powerpc64 │ │ │ ├── pspinlock.c │ │ │ └── pt-machine.h │ │ ├── pspinlock.c │ │ ├── pt-machine.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ │ ├── pthread │ │ ├── .cvsignore │ │ ├── bits │ │ │ ├── initspin.h │ │ │ ├── libc-lock.h │ │ │ ├── libc-tsd.h │ │ │ ├── pthreadtypes.h │ │ │ └── typesizes.h │ │ ├── errno-loc.c │ │ ├── flockfile.c │ │ ├── ftrylockfile.c │ │ ├── funlockfile.c │ │ ├── getcpuclockid.c │ │ ├── herrno-loc.c │ │ ├── list.h │ │ ├── malloc-machine.h │ │ ├── not-cancel.h │ │ ├── posix-timer.h │ │ ├── pt-initfini.c │ │ ├── pthread-functions.h │ │ ├── pthread.h │ │ ├── ptlongjmp.c │ │ ├── res-state.c │ │ ├── semaphore.h │ │ ├── sigaction.c │ │ ├── tcb-offsets.h │ │ ├── timer_create.c │ │ ├── timer_delete.c │ │ ├── timer_getoverr.c │ │ ├── timer_gettime.c │ │ ├── timer_routines.c │ │ ├── timer_settime.c │ │ ├── tst-timer.c │ │ └── uClibc-glue.h │ │ ├── s390 │ │ ├── pspinlock.c │ │ ├── s390-32 │ │ │ └── pt-machine.h │ │ ├── s390-64 │ │ │ └── pt-machine.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ │ ├── sh │ │ ├── pspinlock.c │ │ ├── pt-machine.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ │ ├── sparc │ │ ├── pspinlock.c │ │ ├── pt-machine.h │ │ ├── sparc32 │ │ │ ├── pspinlock.c │ │ │ ├── pt-machine.h │ │ │ └── sparcv9 │ │ │ │ └── pspinlock.c │ │ ├── sparc64 │ │ │ ├── pspinlock.c │ │ │ └── pt-machine.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ │ ├── unix │ │ └── sysv │ │ │ └── linux │ │ │ ├── .cvsignore │ │ │ ├── allocalim.h │ │ │ ├── allocrtsig.c │ │ │ ├── alpha │ │ │ ├── aio_cancel.c │ │ │ ├── bits │ │ │ │ ├── local_lim.h │ │ │ │ └── typesizes.h │ │ │ ├── pt-sigsuspend.S │ │ │ ├── sysdep-cancel.h │ │ │ └── vfork.S │ │ │ ├── arm │ │ │ ├── sysdep-cancel.h │ │ │ └── vfork.S │ │ │ ├── execve.c │ │ │ ├── fork.c │ │ │ ├── fork.h │ │ │ ├── hppa │ │ │ ├── aio_cancel.c │ │ │ ├── bits │ │ │ │ └── initspin.h │ │ │ ├── malloc-machine.h │ │ │ ├── pt-initfini.c │ │ │ └── sysdep-cancel.h │ │ │ ├── i386 │ │ │ ├── sysdep-cancel.h │ │ │ └── vfork.S │ │ │ ├── ia64 │ │ │ ├── bits │ │ │ │ └── local_lim.h │ │ │ ├── fork.h │ │ │ ├── pt-initfini.c │ │ │ ├── pt-sigsuspend.c │ │ │ ├── sysdep-cancel.h │ │ │ └── vfork.S │ │ │ ├── jmp-unwind.c │ │ │ ├── m68k │ │ │ ├── sysdep-cancel.h │ │ │ └── vfork.S │ │ │ ├── mips │ │ │ ├── mips64 │ │ │ │ └── sysdep-cancel.h │ │ │ ├── sysdep-cancel.h │ │ │ └── vfork.S │ │ │ ├── mq_notify.c │ │ │ ├── powerpc │ │ │ ├── powerpc32 │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ ├── powerpc64 │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ └── ptlongjmp.c │ │ │ ├── pt-sigsuspend.c │ │ │ ├── raise.c │ │ │ ├── register-atfork.c │ │ │ ├── s390 │ │ │ ├── bits │ │ │ │ └── typesizes.h │ │ │ ├── s390-32 │ │ │ │ ├── pt-initfini.c │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ └── s390-64 │ │ │ │ ├── pt-initfini.c │ │ │ │ ├── pt-sigsuspend.c │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ ├── sh │ │ │ ├── pt-initfini.c │ │ │ ├── smp.h │ │ │ ├── sysdep-cancel.h │ │ │ └── vfork.S │ │ │ ├── sigwait.c │ │ │ ├── smp.h │ │ │ ├── sparc │ │ │ ├── aio_cancel.c │ │ │ ├── bits │ │ │ │ ├── local_lim.h │ │ │ │ └── typesizes.h │ │ │ ├── fork.h │ │ │ ├── sparc32 │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ ├── sparc64 │ │ │ │ ├── pt-sigsuspend.c │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ └── sysdep-cancel.h │ │ │ ├── unregister-atfork.c │ │ │ └── x86_64 │ │ │ ├── pt-sigsuspend.c │ │ │ ├── sysdep-cancel.h │ │ │ └── vfork.S │ │ └── x86_64 │ │ ├── pspinlock.c │ │ ├── pt-machine.h │ │ ├── tcb-offsets.sym │ │ └── tls.h ├── linuxthreads_db │ ├── .cvsignore │ ├── Banner │ ├── ChangeLog │ ├── Makefile │ ├── Makefile.in │ ├── Makefile.old │ ├── Versions │ ├── proc_service.h │ ├── shlib-versions │ ├── td_init.c │ ├── td_log.c │ ├── td_symbol_list.c │ ├── td_ta_clear_event.c │ ├── td_ta_delete.c │ ├── td_ta_enable_stats.c │ ├── td_ta_event_addr.c │ ├── td_ta_event_getmsg.c │ ├── td_ta_get_nthreads.c │ ├── td_ta_get_ph.c │ ├── td_ta_get_stats.c │ ├── td_ta_map_id2thr.c │ ├── td_ta_map_lwp2thr.c │ ├── td_ta_new.c │ ├── td_ta_reset_stats.c │ ├── td_ta_set_event.c │ ├── td_ta_setconcurrency.c │ ├── td_ta_thr_iter.c │ ├── td_ta_tsd_iter.c │ ├── td_thr_clear_event.c │ ├── td_thr_dbresume.c │ ├── td_thr_dbsuspend.c │ ├── td_thr_event_enable.c │ ├── td_thr_event_getmsg.c │ ├── td_thr_get_info.c │ ├── td_thr_getfpregs.c │ ├── td_thr_getgregs.c │ ├── td_thr_getxregs.c │ ├── td_thr_getxregsize.c │ ├── td_thr_set_event.c │ ├── td_thr_setfpregs.c │ ├── td_thr_setgregs.c │ ├── td_thr_setprio.c │ ├── td_thr_setsigpending.c │ ├── td_thr_setxregs.c │ ├── td_thr_sigsetmask.c │ ├── td_thr_tls_get_addr.c │ ├── td_thr_tlsbase.c │ ├── td_thr_tsd.c │ ├── td_thr_validate.c │ ├── thread_db.h │ └── thread_dbP.h ├── nptl │ ├── .gitignore │ ├── ChangeLog │ ├── DESIGN-barrier.txt │ ├── DESIGN-condvar.txt │ ├── DESIGN-rwlock.txt │ ├── DESIGN-sem.txt │ ├── Makefile │ ├── Makefile.in │ ├── README.NPTL │ ├── TODO │ ├── TODO-kernel │ ├── TODO-testing │ ├── alloca_cutoff.c │ ├── allocatestack.c │ ├── banner.h │ ├── cancellation.c │ ├── cleanup.c │ ├── cleanup_compat.c │ ├── cleanup_defer.c │ ├── cleanup_defer_compat.c │ ├── cleanup_routine.c │ ├── descr.h │ ├── errno_location.c │ ├── events.c │ ├── forward.c │ ├── herrno.c │ ├── init.c │ ├── libc-cancellation.c │ ├── linux_fsinfo.h │ ├── pt-cleanup.c │ ├── pt-system.c │ ├── pthread-errnos.sym │ ├── pthreadP.h │ ├── pthread_atfork.c │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getdetachstate.c │ ├── pthread_attr_getguardsize.c │ ├── pthread_attr_getinheritsched.c │ ├── pthread_attr_getschedparam.c │ ├── pthread_attr_getschedpolicy.c │ ├── pthread_attr_getscope.c │ ├── pthread_attr_getstack.c │ ├── pthread_attr_getstackaddr.c │ ├── pthread_attr_getstacksize.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_setstackaddr.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_clock_gettime.c │ ├── pthread_clock_settime.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_condattr_destroy.c │ ├── pthread_condattr_getclock.c │ ├── pthread_condattr_getpshared.c │ ├── pthread_condattr_init.c │ ├── pthread_condattr_setclock.c │ ├── pthread_condattr_setpshared.c │ ├── pthread_create.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getattr_np.c │ ├── pthread_getconcurrency.c │ ├── pthread_getschedparam.c │ ├── pthread_getspecific.c │ ├── pthread_join.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_kill_other_threads.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_getprioceiling.c │ ├── pthread_mutexattr_getprotocol.c │ ├── pthread_mutexattr_getpshared.c │ ├── pthread_mutexattr_getrobust.c │ ├── pthread_mutexattr_gettype.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_setprioceiling.c │ ├── pthread_mutexattr_setprotocol.c │ ├── pthread_mutexattr_setpshared.c │ ├── pthread_mutexattr_setrobust.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_rwlock_destroy.c │ ├── pthread_rwlock_init.c │ ├── pthread_rwlock_tryrdlock.c │ ├── pthread_rwlock_trywrlock.c │ ├── pthread_rwlockattr_destroy.c │ ├── pthread_rwlockattr_getkind_np.c │ ├── pthread_rwlockattr_getpshared.c │ ├── pthread_rwlockattr_init.c │ ├── pthread_rwlockattr_setkind_np.c │ ├── pthread_rwlockattr_setpshared.c │ ├── pthread_self.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setconcurrency.c │ ├── pthread_setegid.c │ ├── pthread_seteuid.c │ ├── pthread_setgid.c │ ├── pthread_setregid.c │ ├── pthread_setresgid.c │ ├── pthread_setresuid.c │ ├── pthread_setreuid.c │ ├── pthread_setschedparam.c │ ├── pthread_setschedprio.c │ ├── pthread_setspecific.c │ ├── pthread_setuid.c │ ├── pthread_testcancel.c │ ├── pthread_timedjoin.c │ ├── pthread_tryjoin.c │ ├── res.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_unlink.c │ ├── semaphore.h │ ├── semaphoreP.h │ ├── sysdeps │ │ ├── Makefile │ │ ├── Makefile.commonarch │ │ ├── Makefile.in │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── dl-tls.h │ │ │ ├── elf │ │ │ │ └── pt-initfini.c │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── libc-tls.c │ │ │ ├── pthread_spin_lock.S │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── arm │ │ │ ├── Makefile.arch │ │ │ ├── aeabi_read_tp.S │ │ │ ├── dl-tls.h │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── libc-tls.c │ │ │ ├── pthread_spin_lock.S │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ ├── thumb_atomics.S │ │ │ └── tls.h │ │ ├── generic │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── dl-tls.c │ │ │ ├── dl-tls.h │ │ │ ├── libc-tls.c │ │ │ └── lowlevellock.h │ │ ├── i386 │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── dl-tls.h │ │ │ ├── i486 │ │ │ │ └── pthread_spin_trylock.S │ │ │ ├── i586 │ │ │ │ └── pthread_spin_trylock.S │ │ │ ├── i686 │ │ │ │ ├── Makefile │ │ │ │ ├── pthread_spin_trylock.S │ │ │ │ └── tls.h │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_unlock.S │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── dl-tls.h │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── libc-tls.c │ │ │ ├── nptl-sysdep.S │ │ │ ├── pthread_spin_lock.S │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthreaddef.h │ │ │ ├── regdef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── powerpc │ │ │ ├── Makefile.arch │ │ │ ├── dl-tls.h │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_trylock.c │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── pthread │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── allocalim.h │ │ │ ├── bits │ │ │ │ ├── libc-lock.h │ │ │ │ ├── libc-tsd.h │ │ │ │ ├── sigthread.h │ │ │ │ └── stdio-lock.h │ │ │ ├── createthread.c │ │ │ ├── librt-cancellation.c │ │ │ ├── list.h │ │ │ ├── malloc-machine.h │ │ │ ├── posix-timer.h │ │ │ ├── pt-initfini.c │ │ │ ├── pt-longjmp.c │ │ │ ├── pt-sigaction.c │ │ │ ├── pthread-functions.h │ │ │ ├── pthread.h │ │ │ ├── pthread_barrier_destroy.c │ │ │ ├── pthread_barrier_init.c │ │ │ ├── pthread_barrier_wait.c │ │ │ ├── pthread_cond_broadcast.c │ │ │ ├── pthread_cond_signal.c │ │ │ ├── pthread_cond_timedwait.c │ │ │ ├── pthread_cond_wait.c │ │ │ ├── pthread_once.c │ │ │ ├── pthread_rwlock_rdlock.c │ │ │ ├── pthread_rwlock_timedrdlock.c │ │ │ ├── pthread_rwlock_timedwrlock.c │ │ │ ├── pthread_rwlock_unlock.c │ │ │ ├── pthread_rwlock_wrlock.c │ │ │ ├── pthread_sigmask.c │ │ │ ├── pthread_spin_destroy.c │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_unlock.c │ │ │ ├── rt-unwind-resume.c │ │ │ ├── setxid.h │ │ │ ├── timer_create.c │ │ │ ├── timer_delete.c │ │ │ ├── timer_getoverr.c │ │ │ ├── timer_gettime.c │ │ │ ├── timer_routines.c │ │ │ ├── timer_settime.c │ │ │ ├── tpp.c │ │ │ ├── uClibc-glue.h │ │ │ ├── unwind-forcedunwind.c │ │ │ └── unwind-resume.c │ │ ├── sh │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── dl-tls.h │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── libc-tls.c │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthread_spin_unlock.S │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── sparc │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── dl-tls.h │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── pthreaddef.h │ │ │ ├── sparc32 │ │ │ │ ├── jmpbuf-unwind.h │ │ │ │ ├── pthread_spin_lock.c │ │ │ │ ├── pthread_spin_trylock.c │ │ │ │ ├── pthreaddef.h │ │ │ │ └── sparcv9 │ │ │ │ │ ├── pthread_spin_lock.c │ │ │ │ │ ├── pthread_spin_trylock.c │ │ │ │ │ └── pthread_spin_unlock.c │ │ │ ├── sparc64 │ │ │ │ ├── jmpbuf-unwind.h │ │ │ │ ├── pthread_spin_lock.c │ │ │ │ ├── pthread_spin_trylock.c │ │ │ │ ├── pthread_spin_unlock.c │ │ │ │ └── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── unix │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── sysv │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ └── linux │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.commonarch │ │ │ │ ├── __syscall_error.c │ │ │ │ ├── accept.S │ │ │ │ ├── alpha │ │ │ │ ├── Makefile │ │ │ │ ├── bits │ │ │ │ │ ├── local_lim.h │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ └── semaphore.h │ │ │ │ ├── clone.S │ │ │ │ ├── createthread.c │ │ │ │ ├── fork.c │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── pthread_once.c │ │ │ │ ├── sem_post.c │ │ │ │ ├── sysdep-cancel.h │ │ │ │ ├── timer_create.c │ │ │ │ ├── timer_delete.c │ │ │ │ ├── timer_getoverr.c │ │ │ │ ├── timer_gettime.c │ │ │ │ ├── timer_settime.c │ │ │ │ └── vfork.S │ │ │ │ ├── arm │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.arch │ │ │ │ ├── bits │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ └── semaphore.h │ │ │ │ ├── clone.S │ │ │ │ ├── createthread.c │ │ │ │ ├── fork.c │ │ │ │ ├── libc-lowlevellock.c │ │ │ │ ├── lowlevellock.c │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── pt-__syscall_error.c │ │ │ │ ├── pt-__syscall_rt_sigaction.c │ │ │ │ ├── pt-gettimeofday.c │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── pthread_once.c │ │ │ │ ├── sysdep-cancel.h │ │ │ │ ├── unwind-forcedunwind.c │ │ │ │ ├── unwind-resume.c │ │ │ │ └── vfork.S │ │ │ │ ├── bits │ │ │ │ ├── local_lim.h │ │ │ │ └── posix_opt.h │ │ │ │ ├── close.S │ │ │ │ ├── connect.S │ │ │ │ ├── creat.S │ │ │ │ ├── createthread.c │ │ │ │ ├── exit-thread.S │ │ │ │ ├── fork.c │ │ │ │ ├── fork.h │ │ │ │ ├── getpid.c │ │ │ │ ├── i386 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.arch │ │ │ │ ├── bits │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ └── semaphore.h │ │ │ │ ├── clone.S │ │ │ │ ├── createthread.c │ │ │ │ ├── fork.c │ │ │ │ ├── i486 │ │ │ │ │ ├── libc-lowlevellock.S │ │ │ │ │ ├── lowlevellock.S │ │ │ │ │ ├── lowlevelrobustlock.S │ │ │ │ │ ├── pthread_barrier_wait.S │ │ │ │ │ ├── pthread_cond_broadcast.S │ │ │ │ │ ├── pthread_cond_signal.S │ │ │ │ │ ├── pthread_cond_timedwait.S │ │ │ │ │ ├── pthread_cond_wait.S │ │ │ │ │ ├── pthread_rwlock_rdlock.S │ │ │ │ │ ├── pthread_rwlock_timedrdlock.S │ │ │ │ │ ├── pthread_rwlock_timedwrlock.S │ │ │ │ │ ├── pthread_rwlock_unlock.S │ │ │ │ │ ├── pthread_rwlock_wrlock.S │ │ │ │ │ ├── sem_post.S │ │ │ │ │ ├── sem_timedwait.S │ │ │ │ │ ├── sem_trywait.S │ │ │ │ │ └── sem_wait.S │ │ │ │ ├── i586 │ │ │ │ │ ├── libc-lowlevellock.S │ │ │ │ │ ├── lowlevellock.S │ │ │ │ │ ├── lowlevelrobustlock.S │ │ │ │ │ ├── pthread_barrier_wait.S │ │ │ │ │ ├── pthread_cond_broadcast.S │ │ │ │ │ ├── pthread_cond_signal.S │ │ │ │ │ ├── pthread_cond_timedwait.S │ │ │ │ │ ├── pthread_cond_wait.S │ │ │ │ │ ├── pthread_rwlock_rdlock.S │ │ │ │ │ ├── pthread_rwlock_timedrdlock.S │ │ │ │ │ ├── pthread_rwlock_timedwrlock.S │ │ │ │ │ ├── pthread_rwlock_unlock.S │ │ │ │ │ ├── pthread_rwlock_wrlock.S │ │ │ │ │ ├── sem_post.S │ │ │ │ │ ├── sem_timedwait.S │ │ │ │ │ ├── sem_trywait.S │ │ │ │ │ └── sem_wait.S │ │ │ │ ├── i686 │ │ │ │ │ ├── libc-lowlevellock.S │ │ │ │ │ ├── lowlevellock.S │ │ │ │ │ ├── lowlevelrobustlock.S │ │ │ │ │ ├── pthread_barrier_wait.S │ │ │ │ │ ├── pthread_cond_broadcast.S │ │ │ │ │ ├── pthread_cond_signal.S │ │ │ │ │ ├── pthread_cond_timedwait.S │ │ │ │ │ ├── pthread_cond_wait.S │ │ │ │ │ ├── pthread_rwlock_rdlock.S │ │ │ │ │ ├── pthread_rwlock_timedrdlock.S │ │ │ │ │ ├── pthread_rwlock_timedwrlock.S │ │ │ │ │ ├── pthread_rwlock_unlock.S │ │ │ │ │ ├── pthread_rwlock_wrlock.S │ │ │ │ │ ├── sem_post.S │ │ │ │ │ ├── sem_timedwait.S │ │ │ │ │ ├── sem_trywait.S │ │ │ │ │ └── sem_wait.S │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── pt-__syscall_error.c │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── pthread_once.S │ │ │ │ ├── pthread_spin_init.c │ │ │ │ ├── pthread_spin_unlock.S │ │ │ │ ├── smp.h │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── internaltypes.h │ │ │ │ ├── jmp-unwind.c │ │ │ │ ├── kernel-posix-timers.h │ │ │ │ ├── libc-lowlevellock.c │ │ │ │ ├── libc_multiple_threads.c │ │ │ │ ├── libc_pthread_init.c │ │ │ │ ├── lowlevelbarrier.sym │ │ │ │ ├── lowlevelcond.sym │ │ │ │ ├── lowlevellock.c │ │ │ │ ├── lowlevelrobustlock.c │ │ │ │ ├── lowlevelrobustlock.sym │ │ │ │ ├── lowlevelrwlock.sym │ │ │ │ ├── lseek.S │ │ │ │ ├── mips │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.arch │ │ │ │ ├── bits │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ └── semaphore.h │ │ │ │ ├── clone.S │ │ │ │ ├── createthread.c │ │ │ │ ├── fork.c │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── pt-__syscall_rt_sigaction.c │ │ │ │ ├── pt-clone.S │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── pthread_once.c │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── mq_notify.c │ │ │ │ ├── msync.S │ │ │ │ ├── nanosleep.S │ │ │ │ ├── not-cancel.h │ │ │ │ ├── open.S │ │ │ │ ├── pause.S │ │ │ │ ├── powerpc │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.arch │ │ │ │ ├── bits │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ └── semaphore.h │ │ │ │ ├── clone.S │ │ │ │ ├── createthread.c │ │ │ │ ├── fork.c │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── powerpc32 │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── pt-vfork.S │ │ │ │ │ ├── sysdep-cancel.h │ │ │ │ │ └── vfork.S │ │ │ │ ├── powerpc64 │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── pt-vfork.S │ │ │ │ │ ├── sysdep-cancel.h │ │ │ │ │ ├── timer_create.c │ │ │ │ │ ├── timer_delete.c │ │ │ │ │ ├── timer_getoverr.c │ │ │ │ │ ├── timer_gettime.c │ │ │ │ │ ├── timer_settime.c │ │ │ │ │ └── vfork.S │ │ │ │ ├── pt-__syscall_error.c │ │ │ │ ├── pt-longjmp.c │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── pthread_once.c │ │ │ │ ├── pthread_spin_unlock.c │ │ │ │ ├── sem_post.c │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── pt-accept.S │ │ │ │ ├── pt-close.S │ │ │ │ ├── pt-connect.S │ │ │ │ ├── pt-fcntl.c │ │ │ │ ├── pt-fork.c │ │ │ │ ├── pt-fsync.c │ │ │ │ ├── pt-llseek.c │ │ │ │ ├── pt-lseek.S │ │ │ │ ├── pt-msgrcv.c │ │ │ │ ├── pt-msgsnd.c │ │ │ │ ├── pt-msync.S │ │ │ │ ├── pt-nanosleep.S │ │ │ │ ├── pt-open.S │ │ │ │ ├── pt-open64.c │ │ │ │ ├── pt-pause.S │ │ │ │ ├── pt-pread_pwrite.c │ │ │ │ ├── pt-raise.c │ │ │ │ ├── pt-read.S │ │ │ │ ├── pt-recv.S │ │ │ │ ├── pt-recvfrom.S │ │ │ │ ├── pt-recvmsg.S │ │ │ │ ├── pt-send.S │ │ │ │ ├── pt-sendmsg.S │ │ │ │ ├── pt-sendto.S │ │ │ │ ├── pt-sigwait.c │ │ │ │ ├── pt-sleep.c │ │ │ │ ├── pt-tcdrain.c │ │ │ │ ├── pt-tempname.c │ │ │ │ ├── pt-wait.c │ │ │ │ ├── pt-waitpid.c │ │ │ │ ├── pt-write.S │ │ │ │ ├── pthread-pi-defines.sym │ │ │ │ ├── pthread_attr_getaffinity.c │ │ │ │ ├── pthread_attr_setaffinity.c │ │ │ │ ├── pthread_getaffinity.c │ │ │ │ ├── pthread_getcpuclockid.c │ │ │ │ ├── pthread_kill.c │ │ │ │ ├── pthread_mutex_cond_lock.c │ │ │ │ ├── pthread_setaffinity.c │ │ │ │ ├── pthread_sigqueue.c │ │ │ │ ├── pthread_yield.c │ │ │ │ ├── raise.c │ │ │ │ ├── read.S │ │ │ │ ├── recv.S │ │ │ │ ├── recvfrom.S │ │ │ │ ├── recvmsg.S │ │ │ │ ├── register-atfork.c │ │ │ │ ├── sem_post.c │ │ │ │ ├── sem_timedwait.c │ │ │ │ ├── sem_trywait.c │ │ │ │ ├── sem_wait.c │ │ │ │ ├── send.S │ │ │ │ ├── sendmsg.S │ │ │ │ ├── sendto.S │ │ │ │ ├── sh │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.arch │ │ │ │ ├── bits │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ └── semaphore.h │ │ │ │ ├── clone.S │ │ │ │ ├── createthread.c │ │ │ │ ├── fork.c │ │ │ │ ├── libc-lowlevellock.S │ │ │ │ ├── lowlevel-atomic.h │ │ │ │ ├── lowlevellock.S │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── lowlevelrobustlock.S │ │ │ │ ├── pt-initfini.c │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── pthread_barrier_wait.S │ │ │ │ ├── pthread_cond_broadcast.S │ │ │ │ ├── pthread_cond_signal.S │ │ │ │ ├── pthread_cond_timedwait.S │ │ │ │ ├── pthread_cond_wait.S │ │ │ │ ├── pthread_once.S │ │ │ │ ├── pthread_rwlock_rdlock.S │ │ │ │ ├── pthread_rwlock_timedrdlock.S │ │ │ │ ├── pthread_rwlock_timedwrlock.S │ │ │ │ ├── pthread_rwlock_unlock.S │ │ │ │ ├── pthread_rwlock_wrlock.S │ │ │ │ ├── sem_post.S │ │ │ │ ├── sem_timedwait.S │ │ │ │ ├── sem_trywait.S │ │ │ │ ├── sem_wait.S │ │ │ │ ├── sh4 │ │ │ │ │ └── lowlevellock.h │ │ │ │ ├── smp.h │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── sigtimedwait.c │ │ │ │ ├── sigwait.c │ │ │ │ ├── sigwaitinfo.c │ │ │ │ ├── sleep.c │ │ │ │ ├── smp.h │ │ │ │ ├── sparc │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.arch │ │ │ │ ├── bits │ │ │ │ │ ├── local_lim.h │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ └── semaphore.h │ │ │ │ ├── clone.S │ │ │ │ ├── fork.c │ │ │ │ ├── internaltypes.h │ │ │ │ ├── libc-lowlevellock.c │ │ │ │ ├── lowlevellock.c │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── pt-__syscall_error.c │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── pthread_barrier_destroy.c │ │ │ │ ├── pthread_barrier_init.c │ │ │ │ ├── pthread_barrier_wait.c │ │ │ │ ├── pthread_once.c │ │ │ │ ├── sem_init.c │ │ │ │ ├── sparc32 │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── pt-vfork.S │ │ │ │ │ ├── pthread_barrier_wait.c │ │ │ │ │ ├── sem_post.c │ │ │ │ │ ├── sem_timedwait.c │ │ │ │ │ ├── sem_trywait.c │ │ │ │ │ ├── sem_wait.c │ │ │ │ │ ├── sysdep-cancel.h │ │ │ │ │ └── vfork.S │ │ │ │ ├── sparc64 │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── pt-vfork.S │ │ │ │ │ ├── sysdep-cancel.h │ │ │ │ │ ├── timer_create.c │ │ │ │ │ ├── timer_delete.c │ │ │ │ │ ├── timer_getoverr.c │ │ │ │ │ ├── timer_gettime.c │ │ │ │ │ ├── timer_settime.c │ │ │ │ │ └── vfork.S │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── structsem.sym │ │ │ │ ├── timer_create.c │ │ │ │ ├── timer_delete.c │ │ │ │ ├── timer_getoverr.c │ │ │ │ ├── timer_gettime.c │ │ │ │ ├── timer_routines.c │ │ │ │ ├── timer_settime.c │ │ │ │ ├── unregister-atfork.c │ │ │ │ ├── unwindbuf.sym │ │ │ │ ├── waitpid.S │ │ │ │ ├── write.S │ │ │ │ └── x86_64 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.arch │ │ │ │ ├── bits │ │ │ │ ├── pthreadtypes.h │ │ │ │ └── semaphore.h │ │ │ │ ├── cancellation.S │ │ │ │ ├── clone.S │ │ │ │ ├── compat-timer.h │ │ │ │ ├── fork.c │ │ │ │ ├── libc-cancellation.S │ │ │ │ ├── libc-lowlevellock.S │ │ │ │ ├── librt-cancellation.S │ │ │ │ ├── lowlevellock.S │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── lowlevelrobustlock.S │ │ │ │ ├── pt-__syscall_error.c │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── pthread_barrier_wait.S │ │ │ │ ├── pthread_cond_broadcast.S │ │ │ │ ├── pthread_cond_signal.S │ │ │ │ ├── pthread_cond_timedwait.S │ │ │ │ ├── pthread_cond_wait.S │ │ │ │ ├── pthread_once.S │ │ │ │ ├── pthread_rwlock_rdlock.S │ │ │ │ ├── pthread_rwlock_timedrdlock.S │ │ │ │ ├── pthread_rwlock_timedwrlock.S │ │ │ │ ├── pthread_rwlock_unlock.S │ │ │ │ ├── pthread_rwlock_wrlock.S │ │ │ │ ├── pthread_setaffinity.c │ │ │ │ ├── pthread_spin_init.c │ │ │ │ ├── pthread_spin_unlock.S │ │ │ │ ├── sem_post.S │ │ │ │ ├── sem_timedwait.S │ │ │ │ ├── sem_trywait.S │ │ │ │ ├── sem_wait.S │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ └── x86_64 │ │ │ ├── Makefile.arch │ │ │ ├── dl-tls.h │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthread_spin_unlock.S │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ ├── unwind.c │ ├── vars.c │ ├── version.c │ └── version.h └── nptl_db │ ├── ChangeLog │ ├── Makefile │ ├── Makefile.in │ ├── db_info.c │ ├── fetch-value.c │ ├── proc_service.h │ ├── structs.def │ ├── td_init.c │ ├── td_log.c │ ├── td_symbol_list.c │ ├── td_ta_clear_event.c │ ├── td_ta_delete.c │ ├── td_ta_enable_stats.c │ ├── td_ta_event_addr.c │ ├── td_ta_event_getmsg.c │ ├── td_ta_get_nthreads.c │ ├── td_ta_get_ph.c │ ├── td_ta_get_stats.c │ ├── td_ta_map_id2thr.c │ ├── td_ta_map_lwp2thr.c │ ├── td_ta_new.c │ ├── td_ta_reset_stats.c │ ├── td_ta_set_event.c │ ├── td_ta_setconcurrency.c │ ├── td_ta_thr_iter.c │ ├── td_ta_tsd_iter.c │ ├── td_thr_clear_event.c │ ├── td_thr_dbresume.c │ ├── td_thr_dbsuspend.c │ ├── td_thr_event_enable.c │ ├── td_thr_event_getmsg.c │ ├── td_thr_get_info.c │ ├── td_thr_getfpregs.c │ ├── td_thr_getgregs.c │ ├── td_thr_getxregs.c │ ├── td_thr_getxregsize.c │ ├── td_thr_set_event.c │ ├── td_thr_setfpregs.c │ ├── td_thr_setgregs.c │ ├── td_thr_setprio.c │ ├── td_thr_setsigpending.c │ ├── td_thr_setxregs.c │ ├── td_thr_sigsetmask.c │ ├── td_thr_tls_get_addr.c │ ├── td_thr_tlsbase.c │ ├── td_thr_tsd.c │ ├── td_thr_validate.c │ ├── thread_db.h │ └── thread_dbP.h ├── libresolv ├── Makefile ├── Makefile.in └── resolv.c ├── librt ├── Makefile ├── Makefile.in ├── clock_getcpuclockid.c ├── clock_gettime.c ├── clock_nanosleep.c ├── kernel-posix-cpu-timers.h ├── kernel-posix-timers.h ├── mq_close.c ├── mq_getsetattr.c ├── mq_notify.c ├── mq_open.c ├── mq_receive.c ├── mq_send.c ├── mq_timedreceive.S ├── mq_timedsend.S ├── mq_unlink.c ├── rt_stubs.c ├── shm.c ├── timer_create.c ├── timer_delete.c ├── timer_getoverr.c ├── timer_gettime.c └── timer_settime.c ├── libubacktrace ├── Makefile ├── Makefile.in ├── arm │ ├── Makefile.arch │ └── backtrace.c ├── backtrace.c ├── backtracesyms.c └── backtracesymsfd.c ├── libutil ├── Makefile ├── Makefile.in ├── forkpty.c ├── login.c ├── login_tty.c ├── logout.c ├── logwtmp.c └── openpty.c ├── test ├── .gitignore ├── API │ ├── Makefile │ ├── Makefile.in │ ├── aio.SUSv4.syms │ ├── arpa_inet.SUSv4.syms │ ├── complex.SUSv4.syms │ ├── ctype-CX.SUSv4.syms │ ├── ctype-OBXSI.SUSv4.syms │ ├── ctype.SUSv4.syms │ ├── dirent-XSI.SUSv4.syms │ ├── dirent.SUSv4.syms │ ├── dlfcn.SUSv4.syms │ ├── fcntl-ADV.SUSv4.syms │ ├── fcntl.SUSv4.syms │ ├── fenv.SUSv4.syms │ ├── ftw-OB.SUSv4.syms │ ├── ftw.SUSv4.syms │ ├── glob.SUSv4.syms │ ├── grp-XSI.SUSv4.syms │ ├── grp.SUSv4.syms │ ├── html2input.sh │ ├── iconv.SUSv4.syms │ ├── inttypes.SUSv4.syms │ ├── libgen.SUSv4.syms │ ├── locale-CX.SUSv4.syms │ ├── locale.SUSv4.syms │ ├── math-XSI.SUSv4.syms │ ├── math.SUSv4.syms │ ├── monetary.SUSv4.syms │ ├── mqueue.SUSv4.syms │ ├── ndbm.SUSv4.syms │ ├── net_if.SUSv4.syms │ ├── netdb.SUSv4.syms │ ├── nl_types.SUSv4.syms │ ├── pthread-MC1.SUSv4.syms │ ├── pthread-OBXSI.SUSv4.syms │ ├── pthread-RPP|TPP.SUSv4.syms │ ├── pthread-TCT.SUSv4.syms │ ├── pthread-TPS.SUSv4.syms │ ├── pthread-TSATSS.SUSv4.syms │ ├── pthread-TSH.SUSv4.syms │ ├── pthread-TSS.SUSv4.syms │ ├── pthread.SUSv4.syms │ ├── pwd-XSI.SUSv4.syms │ ├── pwd.SUSv4.syms │ ├── regex.SUSv4.syms │ ├── sched-PS.SUSv4.syms │ ├── sched-PS|TPS.SUSv4.syms │ ├── sched.SUSv4.syms │ ├── search.SUSv4.syms │ ├── semaphore.SUSv4.syms │ ├── separate.awk │ ├── setjmp-CX.SUSv4.syms │ ├── setjmp-OBXSI.SUSv4.syms │ ├── setjmp.SUSv4.syms │ ├── signal-CX.SUSv4.syms │ ├── signal-OBXSI.SUSv4.syms │ ├── signal-XSI.SUSv4.syms │ ├── signal.SUSv4.syms │ ├── spawn-PS.SUSv4.syms │ ├── spawn.SUSv4.syms │ ├── stdio-CX.SUSv4.syms │ ├── stdio-OB.SUSv4.syms │ ├── stdio-OBXSI.SUSv4.syms │ ├── stdio.SUSv4.syms │ ├── stdlib-ADV.SUSv4.syms │ ├── stdlib-CX.SUSv4.syms │ ├── stdlib-OBCX.SUSv4.syms │ ├── stdlib-XSI.SUSv4.syms │ ├── stdlib.SUSv4.syms │ ├── string-CX.SUSv4.syms │ ├── string-XSI.SUSv4.syms │ ├── string.SUSv4.syms │ ├── strings-XSI.SUSv4.syms │ ├── strings.SUSv4.syms │ ├── stropts.SUSv4.syms │ ├── sys_mman-ADV.SUSv4.syms │ ├── sys_mman-ML.SUSv4.syms │ ├── sys_mman-MLR.SUSv4.syms │ ├── sys_mman-SHM.SUSv4.syms │ ├── sys_mman-TYM.SUSv4.syms │ ├── sys_mman-XSI|SIO.SUSv4.syms │ ├── sys_mman.SUSv4.syms │ ├── sys_msg.SUSv4.syms │ ├── sys_resource.SUSv4.syms │ ├── sys_select.SUSv4.syms │ ├── sys_sem.SUSv4.syms │ ├── sys_shm.SUSv4.syms │ ├── sys_socket.SUSv4.syms │ ├── sys_stat-XSI.SUSv4.syms │ ├── sys_stat.SUSv4.syms │ ├── sys_statvfs.SUSv4.syms │ ├── sys_time-OB.SUSv4.syms │ ├── sys_time.SUSv4.syms │ ├── sys_uio.SUSv4.syms │ ├── sys_wait.SUSv4.syms │ ├── syslog.SUSv4.syms │ ├── termios.SUSv4.syms │ ├── time-CPT.SUSv4.syms │ ├── time-CX.SUSv4.syms │ ├── time-OB.SUSv4.syms │ ├── time-OBCX.SUSv4.syms │ ├── time-XSI.SUSv4.syms │ ├── time.SUSv4.syms │ ├── trace-TEF.SUSv4.syms │ ├── trace-TRI.SUSv4.syms │ ├── trace-TRL.SUSv4.syms │ ├── trace.SUSv4.syms │ ├── tst-API.sh │ ├── unistd-CX.SUSv4.syms │ ├── unistd-FSC.SUSv4.syms │ ├── unistd-OBXSI.SUSv4.syms │ ├── unistd-SIO.SUSv4.syms │ ├── unistd-XSI.SUSv4.syms │ ├── unistd.SUSv4.syms │ ├── utmpx.SUSv4.syms │ ├── wchar-CX.SUSv4.syms │ ├── wchar-OBXSI.SUSv4.syms │ ├── wchar-XSI.SUSv4.syms │ ├── wchar.SUSv4.syms │ ├── wctype-CX.SUSv4.syms │ ├── wctype.SUSv4.syms │ └── wordexp.SUSv4.syms ├── Makefile ├── README ├── Rules.mak ├── Test.mak ├── args │ ├── Makefile │ ├── Makefile.in │ ├── arg_test.c │ ├── arg_test.out.good │ └── arg_test_glibc.out.good ├── assert │ ├── Makefile │ ├── Makefile.in │ └── assert.c ├── build │ ├── Makefile │ └── check_config_options.sh ├── crypt │ ├── Makefile │ ├── Makefile.in │ ├── crypt.c │ ├── crypt.input │ ├── crypt.out.good │ ├── md5c-test.c │ ├── sha256c-test.c │ └── sha512c-test.c ├── ctype │ ├── Makefile │ ├── Makefile.in │ └── ctype.c ├── dlopen │ ├── Makefile │ ├── Makefile.in │ ├── dladdr.c │ ├── dlafk.c │ ├── dlstatic.c │ ├── dltest.c │ ├── dltest2.c │ ├── dlundef.c │ ├── libafk-temp.c │ ├── libafk.c │ ├── libstatic.c │ ├── libtest.c │ ├── libtest1.c │ ├── libtest2.c │ ├── libtest3.c │ ├── libundef.c │ ├── test1.c │ ├── test2.c │ └── test3.c ├── inet │ ├── Makefile │ ├── Makefile.in │ ├── bug-if1.c │ ├── gethost_r-align.c │ ├── gethostid.c │ ├── getnetent.c │ ├── if_nameindex.c │ ├── tst-aton.c │ ├── tst-ether_aton.c │ ├── tst-ethers-line.c │ ├── tst-ethers.c │ ├── tst-network.c │ └── tst-ntoa.c ├── librt │ ├── Makefile │ ├── Makefile.in │ └── shmtest.c ├── locale-mbwc │ ├── Makefile │ ├── Makefile.in │ ├── dat_isw-funcs.h │ ├── dat_iswalnum.c │ ├── dat_iswalpha.c │ ├── dat_iswcntrl.c │ ├── dat_iswctype.c │ ├── dat_iswdigit.c │ ├── dat_iswgraph.c │ ├── dat_iswlower.c │ ├── dat_iswprint.c │ ├── dat_iswpunct.c │ ├── dat_iswspace.c │ ├── dat_iswupper.c │ ├── dat_iswxdigit.c │ ├── dat_mblen.c │ ├── dat_mbrlen.c │ ├── dat_mbrtowc.c │ ├── dat_mbsrtowcs.c │ ├── dat_mbstowcs.c │ ├── dat_mbtowc.c │ ├── dat_strcoll.c │ ├── dat_strfmon.c │ ├── dat_strxfrm.c │ ├── dat_swscanf.c │ ├── dat_tow-funcs.h │ ├── dat_towctrans.c │ ├── dat_towlower.c │ ├── dat_towupper.c │ ├── dat_wcrtomb.c │ ├── dat_wcscat.c │ ├── dat_wcschr.c │ ├── dat_wcscmp.c │ ├── dat_wcscoll.c │ ├── dat_wcscpy.c │ ├── dat_wcscspn.c │ ├── dat_wcslen.c │ ├── dat_wcsncat.c │ ├── dat_wcsncmp.c │ ├── dat_wcsncpy.c │ ├── dat_wcspbrk.c │ ├── dat_wcsrtombs.c │ ├── dat_wcsspn.c │ ├── dat_wcsstr.c │ ├── dat_wcstod.c │ ├── dat_wcstok.c │ ├── dat_wcstombs.c │ ├── dat_wcswidth.c │ ├── dat_wcsxfrm.c │ ├── dat_wctob.c │ ├── dat_wctomb.c │ ├── dat_wctrans.c │ ├── dat_wctype.c │ ├── dat_wcwidth.c │ ├── tgn_funcdef.h │ ├── tgn_locdef.h │ ├── tsp_common.c │ ├── tst2_mbrtowc.c │ ├── tst_funcs.h │ ├── tst_iswalnum.c │ ├── tst_iswalpha.c │ ├── tst_iswcntrl.c │ ├── tst_iswctype.c │ ├── tst_iswdigit.c │ ├── tst_iswgraph.c │ ├── tst_iswlower.c │ ├── tst_iswprint.c │ ├── tst_iswpunct.c │ ├── tst_iswspace.c │ ├── tst_iswupper.c │ ├── tst_iswxdigit.c │ ├── tst_mblen.c │ ├── tst_mbrlen.c │ ├── tst_mbrtowc.c │ ├── tst_mbsrtowcs.c │ ├── tst_mbstowcs.c │ ├── tst_mbtowc.c │ ├── tst_strcoll.c │ ├── tst_strfmon.c │ ├── tst_strxfrm.c │ ├── tst_swscanf.c │ ├── tst_towctrans.c │ ├── tst_towlower.c │ ├── tst_towupper.c │ ├── tst_types.h │ ├── tst_wcrtomb.c │ ├── tst_wcscat.c │ ├── tst_wcschr.c │ ├── tst_wcscmp.c │ ├── tst_wcscoll.c │ ├── tst_wcscpy.c │ ├── tst_wcscspn.c │ ├── tst_wcslen.c │ ├── tst_wcsncat.c │ ├── tst_wcsncmp.c │ ├── tst_wcsncpy.c │ ├── tst_wcspbrk.c │ ├── tst_wcsrtombs.c │ ├── tst_wcsspn.c │ ├── tst_wcsstr.c │ ├── tst_wcstod.c │ ├── tst_wcstok.c │ ├── tst_wcstombs.c │ ├── tst_wcswidth.c │ ├── tst_wcsxfrm.c │ ├── tst_wctob.c │ ├── tst_wctomb.c │ ├── tst_wctrans.c │ ├── tst_wctype.c │ └── tst_wcwidth.c ├── locale │ ├── Makefile │ ├── Makefile.in │ ├── bug-iconv-trans.c │ ├── bug-usesetlocale.c │ ├── collate-test.c │ ├── dump-ctype.c │ ├── gen-unicode-ctype.c │ ├── show-ucs-data.c │ ├── tst-C-locale.c │ ├── tst-ctype-de_DE.ISO-8859-1.in │ ├── tst-ctype.c │ ├── tst-digits.c │ ├── tst-fmon.c │ ├── tst-langinfo.c │ ├── tst-langinfo.input │ ├── tst-leaks.c │ ├── tst-mbswcs1.c │ ├── tst-mbswcs2.c │ ├── tst-mbswcs3.c │ ├── tst-mbswcs4.c │ ├── tst-mbswcs5.c │ ├── tst-mbswcs6.c │ ├── tst-numeric.c │ ├── tst-rpmatch.c │ ├── tst-setlocale.c │ ├── tst-sscanf.c │ ├── tst-strfmon1.c │ ├── tst-trans.c │ ├── tst-wctype.c │ ├── tst-xlocale1.c │ ├── tst-xlocale2.c │ ├── tst_nl_langinfo.c │ └── xfrm-test.c ├── malloc │ ├── Makefile │ ├── Makefile.in │ ├── malloc-standard-alignment.c │ ├── malloc.c │ ├── mallocbug.c │ ├── realloc-can-shrink.c │ ├── realloc0.c │ ├── testmalloc.c │ ├── time_malloc.c │ ├── tst-calloc.c │ ├── tst-malloc.c │ ├── tst-mallocfork.c │ ├── tst-mcheck.c │ ├── tst-obstack.c │ └── tst-valloc.c ├── math │ ├── Makefile │ ├── Makefile.in │ ├── basic-test.c │ ├── c99_test.c │ ├── compile_test.c │ ├── fenv.h │ ├── gamma.c │ ├── gen-libm-test.pl │ ├── ilogb.c │ ├── libm-test-ulps-generic │ ├── libm-test-ulps-i386 │ ├── libm-test-ulps-ia64 │ ├── libm-test-ulps-powerpc │ ├── libm-test-ulps-s390 │ ├── libm-test-ulps-sh4 │ ├── libm-test-ulps-sparc32 │ ├── libm-test-ulps-sparc64 │ ├── libm-test-ulps-x86_64 │ ├── libm-test.inc │ ├── rint.c │ ├── signgam.c │ ├── test-double.c │ ├── test-float.c │ ├── test-fpucw.c │ ├── test-idouble.c │ ├── test-ifloat.c │ ├── test-ildoubl.c │ ├── test-ldouble.c │ └── tst-definitions.c ├── misc │ ├── Makefile │ ├── Makefile.in │ ├── bug-glob1.c │ ├── bug-glob2.c │ ├── bug-readdir1.c │ ├── dirent.c │ ├── dirent64.c │ ├── fdopen.c │ ├── opendir-tst1.c │ ├── outb.c │ ├── popen.c │ ├── seek.c │ ├── sem.c │ ├── stdarg.c │ ├── tst-fnmatch.c │ ├── tst-fnmatch.input │ ├── tst-gnuglob.c │ ├── tst-scandir.c │ ├── tst-seekdir.c │ └── tst-utmp.c ├── mmap │ ├── Makefile │ ├── mmap.c │ ├── mmap2.c │ └── mmap64.c ├── nptl │ ├── Makefile │ ├── Makefile.in │ ├── eintr.c │ ├── tst-align.c │ ├── tst-align2.c │ ├── tst-align3.c │ ├── tst-atfork1.c │ ├── tst-attr1.c │ ├── tst-attr2.c │ ├── tst-attr3.c │ ├── tst-barrier1.c │ ├── tst-barrier2.c │ ├── tst-barrier3.c │ ├── tst-barrier4.c │ ├── tst-basic1.c │ ├── tst-basic2.c │ ├── tst-basic3.c │ ├── tst-basic4.c │ ├── tst-basic5.c │ ├── tst-basic6.c │ ├── tst-basic7.c │ ├── tst-cancel1.c │ ├── tst-cancel10.c │ ├── tst-cancel11.c │ ├── tst-cancel12.c │ ├── tst-cancel13.c │ ├── tst-cancel14.c │ ├── tst-cancel15.c │ ├── tst-cancel16.c │ ├── tst-cancel18.c │ ├── tst-cancel19.c │ ├── tst-cancel2.c │ ├── tst-cancel20.c │ ├── tst-cancel21.c │ ├── tst-cancel22.c │ ├── tst-cancel23.c │ ├── tst-cancel25.c │ ├── tst-cancel3.c │ ├── tst-cancel4.c │ ├── tst-cancel5.c │ ├── tst-cancel6.c │ ├── tst-cancel7.c │ ├── tst-cancel8.c │ ├── tst-cancel9.c │ ├── tst-cancelx10.c │ ├── tst-cancelx11.c │ ├── tst-cancelx12.c │ ├── tst-cancelx13.c │ ├── tst-cancelx14.c │ ├── tst-cancelx15.c │ ├── tst-cancelx16.c │ ├── tst-cancelx18.c │ ├── tst-cancelx2.c │ ├── tst-cancelx20.c │ ├── tst-cancelx21.c │ ├── tst-cancelx3.c │ ├── tst-cancelx4.c │ ├── tst-cancelx6.c │ ├── tst-cancelx7.c │ ├── tst-cancelx8.c │ ├── tst-cancelx9.c │ ├── tst-cleanup0.c │ ├── tst-cleanup1.c │ ├── tst-cleanup2.c │ ├── tst-cleanup3.c │ ├── tst-cleanup4.c │ ├── tst-cleanup4aux.c │ ├── tst-cleanupx0.c │ ├── tst-cleanupx1.c │ ├── tst-cleanupx2.c │ ├── tst-cleanupx3.c │ ├── tst-cleanupx4.c │ ├── tst-clock.c │ ├── tst-clock1.c │ ├── tst-clock2.c │ ├── tst-clock_nanosleep.c │ ├── tst-cond1.c │ ├── tst-cond10.c │ ├── tst-cond11.c │ ├── tst-cond12.c │ ├── tst-cond13.c │ ├── tst-cond14.c │ ├── tst-cond15.c │ ├── tst-cond16.c │ ├── tst-cond17.c │ ├── tst-cond18.c │ ├── tst-cond19.c │ ├── tst-cond2.c │ ├── tst-cond20.c │ ├── tst-cond21.c │ ├── tst-cond22.c │ ├── tst-cond23.c │ ├── tst-cond3.c │ ├── tst-cond4.c │ ├── tst-cond5.c │ ├── tst-cond6.c │ ├── tst-cond7.c │ ├── tst-cond8.c │ ├── tst-cond9.c │ ├── tst-cpuclock1.c │ ├── tst-cpuclock2.c │ ├── tst-cputimer1.c │ ├── tst-cputimer2.c │ ├── tst-cputimer3.c │ ├── tst-detach1.c │ ├── tst-dlsym1.c │ ├── tst-eintr1.c │ ├── tst-eintr2.c │ ├── tst-eintr3.c │ ├── tst-eintr4.c │ ├── tst-eintr5.c │ ├── tst-exec2.c │ ├── tst-exec3.c │ ├── tst-exec4.c │ ├── tst-exit1.c │ ├── tst-exit2.c │ ├── tst-exit3.c │ ├── tst-fini1.c │ ├── tst-fini1mod.c │ ├── tst-flock1.c │ ├── tst-flock2.c │ ├── tst-fork1.c │ ├── tst-fork2.c │ ├── tst-fork3.c │ ├── tst-fork4.c │ ├── tst-getpid1.c │ ├── tst-getpid2.c │ ├── tst-getpid3.c │ ├── tst-initializers1-c89.c │ ├── tst-initializers1-c99.c │ ├── tst-initializers1-gnu89.c │ ├── tst-initializers1-gnu99.c │ ├── tst-initializers1.c │ ├── tst-join1.c │ ├── tst-join2.c │ ├── tst-join3.c │ ├── tst-join4.c │ ├── tst-join5.c │ ├── tst-join6.c │ ├── tst-key1.c │ ├── tst-key2.c │ ├── tst-key3.c │ ├── tst-key4.c │ ├── tst-kill1.c │ ├── tst-kill2.c │ ├── tst-kill3.c │ ├── tst-kill4.c │ ├── tst-kill5.c │ ├── tst-kill6.c │ ├── tst-mqueue.h │ ├── tst-mqueue1.c │ ├── tst-mqueue2.c │ ├── tst-mqueue3.c │ ├── tst-mqueue4.c │ ├── tst-mqueue5.c │ ├── tst-mqueue6.c │ ├── tst-mqueue7.c │ ├── tst-mqueue8.c │ ├── tst-mqueue9.c │ ├── tst-mutex1.c │ ├── tst-mutex2.c │ ├── tst-mutex3.c │ ├── tst-mutex4.c │ ├── tst-mutex5.c │ ├── tst-mutex5a.c │ ├── tst-mutex6.c │ ├── tst-mutex7.c │ ├── tst-mutex7a.c │ ├── tst-mutex8.c │ ├── tst-mutex9.c │ ├── tst-oddstacklimit.c │ ├── tst-once1.c │ ├── tst-once2.c │ ├── tst-once3.c │ ├── tst-once4.c │ ├── tst-oncex3.c │ ├── tst-oncex4.c │ ├── tst-popen1.c │ ├── tst-raise1.c │ ├── tst-rwlock1.c │ ├── tst-rwlock10.c │ ├── tst-rwlock11.c │ ├── tst-rwlock12.c │ ├── tst-rwlock13.c │ ├── tst-rwlock14.c │ ├── tst-rwlock2.c │ ├── tst-rwlock2a.c │ ├── tst-rwlock3.c │ ├── tst-rwlock4.c │ ├── tst-rwlock5.c │ ├── tst-rwlock6.c │ ├── tst-rwlock7.c │ ├── tst-rwlock8.c │ ├── tst-rwlock9.c │ ├── tst-sched1.c │ ├── tst-sem1.c │ ├── tst-sem10.c │ ├── tst-sem11.c │ ├── tst-sem12.c │ ├── tst-sem2.c │ ├── tst-sem3.c │ ├── tst-sem4.c │ ├── tst-sem5.c │ ├── tst-sem6.c │ ├── tst-sem7.c │ ├── tst-sem8.c │ ├── tst-sem9.c │ ├── tst-signal1.c │ ├── tst-signal2.c │ ├── tst-signal3.c │ ├── tst-signal4.c │ ├── tst-signal5.c │ ├── tst-signal6.c │ ├── tst-signal7.c │ ├── tst-spin1.c │ ├── tst-spin2.c │ ├── tst-spin3.c │ ├── tst-stack-align.h │ ├── tst-stack1.c │ ├── tst-stack2.c │ ├── tst-stdio1.c │ ├── tst-stdio2.c │ ├── tst-sysconf.c │ ├── tst-timer2.c │ ├── tst-timer3.c │ ├── tst-timer4.c │ ├── tst-timer5.c │ ├── tst-tls1.c │ ├── tst-tls2.c │ ├── tst-tls3.c │ ├── tst-tls3mod.c │ ├── tst-tls4.c │ ├── tst-tls4moda.c │ ├── tst-tls4modb.c │ ├── tst-tls5.c │ ├── tst-tls5.h │ ├── tst-tls5mod.c │ ├── tst-tls5moda.c │ ├── tst-tls5modb.c │ ├── tst-tls5modc.c │ ├── tst-tls5modd.c │ ├── tst-tls5mode.c │ ├── tst-tls5modf.c │ ├── tst-tsd1.c │ ├── tst-tsd2.c │ ├── tst-tsd3.c │ ├── tst-tsd4.c │ ├── tst-tsd5.c │ ├── tst-tsd6.c │ ├── tst-typesizes.c │ ├── tst-umask1.c │ ├── tst-unload.c │ ├── tst-vfork1.c │ ├── tst-vfork1x.c │ ├── tst-vfork2.c │ └── tst-vfork2x.c ├── plt │ └── check-plt.sh ├── pthread │ ├── Makefile │ ├── Makefile.in │ ├── cancellation-points.c │ ├── ex1.c │ ├── ex2.c │ ├── ex3.c │ ├── ex4.c │ ├── ex5.c │ ├── ex6.c │ ├── ex7.c │ └── tst-too-many-cleanups.c ├── pwd_grp │ ├── .indent.pro │ ├── Makefile │ ├── Makefile.in │ ├── getgroups.c │ ├── grcat.c │ ├── pwcat.c │ ├── test_grp.c │ └── test_pwd.c ├── regex │ ├── LICENSE │ ├── Makefile │ ├── basic.dat │ ├── categorize.dat │ ├── forcedassoc.dat │ ├── interpretation.dat │ ├── leftassoc.dat │ ├── nullsubexpr.dat │ ├── repetition.dat │ ├── rightassoc.dat │ ├── testregex.c │ ├── tst-regex2.c │ ├── tst-regex2.dat │ └── tst-regexloc.c ├── rpc │ ├── Makefile │ ├── Makefile.in │ ├── getrpcent.c │ └── getrpcent_r.c ├── setjmp │ ├── Makefile │ ├── bug269-setjmp.c │ ├── jmpbug.c │ ├── sigjmpbug.c │ ├── tst-setjmp.c │ └── tst-vfork-longjmp.c ├── signal │ ├── .indent.pro │ ├── Makefile │ ├── Makefile.in │ ├── sigchld.c │ ├── signal.c │ ├── tst-raise.c │ ├── tst-signal.c │ ├── tst-sigset.c │ └── tst-sigsimple.c ├── silly │ ├── Makefile │ ├── Makefile.in │ ├── hello.c │ └── tiny.c ├── stat │ ├── Makefile │ ├── Makefile.in │ ├── memcmp-stat.c │ ├── stat-loop256.c │ ├── stat.c │ └── stat64.c ├── stdio │ ├── 64bit.c │ ├── Makefile │ ├── Makefile.in │ └── fclose-loop.c ├── stdlib │ ├── Makefile │ ├── Makefile.in │ ├── ptytest.c │ ├── qsort.c │ ├── test-canon.c │ ├── test-canon2.c │ ├── testatexit.c │ ├── teston_exit.c │ ├── teststrtol.c │ └── teststrtoq.c ├── string │ ├── Makefile │ ├── Makefile.in │ ├── bug-strcoll1.c │ ├── bug-strncat1.c │ ├── bug-strpbrk1.c │ ├── bug-strspn1.c │ ├── stratcliff.c │ ├── test-ffs.c │ ├── testcopy.c │ ├── tester.c │ ├── tst-bswap.c │ ├── tst-inlcall.c │ ├── tst-strlen.c │ ├── tst-strtok.c │ └── tst-strxfrm.c ├── termios │ ├── Makefile │ └── termios.c ├── test-skeleton.c ├── testsuite.h ├── time │ ├── Makefile │ ├── Makefile.in │ ├── bug-asctime.c │ ├── bug-asctime_r.c │ ├── clocktest.c │ ├── test_time.c │ ├── time.c │ ├── tst-ctime.c │ ├── tst-ftime_l.c │ ├── tst-futimens1.c │ ├── tst-mktime.c │ ├── tst-mktime2.c │ ├── tst-mktime3.c │ ├── tst-posixtz.c │ ├── tst-strftime.c │ ├── tst-strptime.c │ ├── tst-strptime2.c │ ├── tst-timezone.c │ └── tst_wcsftime.c ├── tls │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── tls-macros-arm.h │ ├── tls-macros-mips.h │ ├── tls-macros-thumb.h │ ├── tls-macros.h │ ├── tst-tls-at-ctor.c │ ├── tst-tls1-static.c │ ├── tst-tls1.c │ ├── tst-tls10.c │ ├── tst-tls10.h │ ├── tst-tls11.c │ ├── tst-tls12.c │ ├── tst-tls13.c │ ├── tst-tls14.c │ ├── tst-tls15.c │ ├── tst-tls16.c │ ├── tst-tls17.c │ ├── tst-tls18.c │ ├── tst-tls2-static.c │ ├── tst-tls2.c │ ├── tst-tls3.c │ ├── tst-tls4.c │ ├── tst-tls5.c │ ├── tst-tls6.c │ ├── tst-tls7.c │ ├── tst-tls8.c │ ├── tst-tls9-static.c │ ├── tst-tls9.c │ ├── tst-tlsmod-at-ctor.c │ ├── tst-tlsmod1.c │ ├── tst-tlsmod10.c │ ├── tst-tlsmod11.c │ ├── tst-tlsmod12.c │ ├── tst-tlsmod13.c │ ├── tst-tlsmod13a.c │ ├── tst-tlsmod14a.c │ ├── tst-tlsmod14b.c │ ├── tst-tlsmod15a.c │ ├── tst-tlsmod15b.c │ ├── tst-tlsmod16a.c │ ├── tst-tlsmod16b.c │ ├── tst-tlsmod17a.c │ ├── tst-tlsmod17b.c │ ├── tst-tlsmod18a.c │ ├── tst-tlsmod2.c │ ├── tst-tlsmod3.c │ ├── tst-tlsmod4.c │ ├── tst-tlsmod5.c │ ├── tst-tlsmod6.c │ ├── tst-tlsmod7.c │ ├── tst-tlsmod8.c │ └── tst-tlsmod9.c └── unistd │ ├── Makefile │ ├── Makefile.in │ ├── clone.c │ ├── clone_cruft.h │ ├── errno.c │ ├── exec-null.c │ ├── fork.c │ ├── getcwd.c │ ├── getopt.c │ ├── getopt_long.c │ ├── tst-getconf.sh │ ├── tst-preadwrite.c │ ├── tst-preadwrite64.c │ ├── tstgetopt.c │ └── vfork.c └── utils ├── .gitignore ├── Makefile ├── Makefile.in ├── bswap.h ├── chroot_realpath.c ├── getconf.c ├── iconv.c ├── ldconfig.c ├── ldd.c ├── mmap-windows.c ├── porting.h └── readsoname2.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/COPYING -------------------------------------------------------------------------------- /Doom.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/Doom.CPP -------------------------------------------------------------------------------- /Frotz.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/Frotz.CPP -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/README.md -------------------------------------------------------------------------------- /TempleLoader.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/TempleLoader.CPP -------------------------------------------------------------------------------- /Test.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/Test.CPP -------------------------------------------------------------------------------- /advent.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/advent.z5 -------------------------------------------------------------------------------- /demo.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/demo.iso -------------------------------------------------------------------------------- /detective.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/detective.z5 -------------------------------------------------------------------------------- /doom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/doom.sh -------------------------------------------------------------------------------- /frotz.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz.prg -------------------------------------------------------------------------------- /frotz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz.sh -------------------------------------------------------------------------------- /frotz/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/AUTHORS -------------------------------------------------------------------------------- /frotz/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/BUGS -------------------------------------------------------------------------------- /frotz/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/ChangeLog -------------------------------------------------------------------------------- /frotz/DOSBUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/DOSBUILD.txt -------------------------------------------------------------------------------- /frotz/DUMB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/DUMB -------------------------------------------------------------------------------- /frotz/HOW_TO_PLAY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/HOW_TO_PLAY -------------------------------------------------------------------------------- /frotz/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/INSTALL -------------------------------------------------------------------------------- /frotz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/Makefile -------------------------------------------------------------------------------- /frotz/PACKAGING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/PACKAGING -------------------------------------------------------------------------------- /frotz/PORTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/PORTING -------------------------------------------------------------------------------- /frotz/README.1st.frotz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/README.1st.frotz -------------------------------------------------------------------------------- /frotz/README.frotz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/README.frotz -------------------------------------------------------------------------------- /frotz/SPEECH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/SPEECH -------------------------------------------------------------------------------- /frotz/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/TODO -------------------------------------------------------------------------------- /frotz/doc/dfrotz.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/doc/dfrotz.6 -------------------------------------------------------------------------------- /frotz/doc/frotz.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/doc/frotz.6 -------------------------------------------------------------------------------- /frotz/doc/frotz.conf-big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/doc/frotz.conf-big -------------------------------------------------------------------------------- /frotz/doc/frotz.conf-small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/doc/frotz.conf-small -------------------------------------------------------------------------------- /frotz/src/blorb/blorb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/blorb/blorb.h -------------------------------------------------------------------------------- /frotz/src/blorb/blorblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/blorb/blorblib.c -------------------------------------------------------------------------------- /frotz/src/blorb/blorblow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/blorb/blorblow.h -------------------------------------------------------------------------------- /frotz/src/common/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/buffer.c -------------------------------------------------------------------------------- /frotz/src/common/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/err.c -------------------------------------------------------------------------------- /frotz/src/common/fastmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/fastmem.c -------------------------------------------------------------------------------- /frotz/src/common/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/files.c -------------------------------------------------------------------------------- /frotz/src/common/frotz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/frotz.h -------------------------------------------------------------------------------- /frotz/src/common/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/getopt.c -------------------------------------------------------------------------------- /frotz/src/common/hotkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/hotkey.c -------------------------------------------------------------------------------- /frotz/src/common/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/input.c -------------------------------------------------------------------------------- /frotz/src/common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/main.c -------------------------------------------------------------------------------- /frotz/src/common/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/math.c -------------------------------------------------------------------------------- /frotz/src/common/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/object.c -------------------------------------------------------------------------------- /frotz/src/common/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/process.c -------------------------------------------------------------------------------- /frotz/src/common/quetzal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/quetzal.c -------------------------------------------------------------------------------- /frotz/src/common/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/random.c -------------------------------------------------------------------------------- /frotz/src/common/redirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/redirect.c -------------------------------------------------------------------------------- /frotz/src/common/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/screen.c -------------------------------------------------------------------------------- /frotz/src/common/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/setup.h -------------------------------------------------------------------------------- /frotz/src/common/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/sound.c -------------------------------------------------------------------------------- /frotz/src/common/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/stream.c -------------------------------------------------------------------------------- /frotz/src/common/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/table.c -------------------------------------------------------------------------------- /frotz/src/common/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/text.c -------------------------------------------------------------------------------- /frotz/src/common/variable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/common/variable.c -------------------------------------------------------------------------------- /frotz/src/curses/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/getopt.h -------------------------------------------------------------------------------- /frotz/src/curses/ux_audio_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_audio_none.c -------------------------------------------------------------------------------- /frotz/src/curses/ux_audio_oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_audio_oss.c -------------------------------------------------------------------------------- /frotz/src/curses/ux_blorb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_blorb.c -------------------------------------------------------------------------------- /frotz/src/curses/ux_blorb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_blorb.h -------------------------------------------------------------------------------- /frotz/src/curses/ux_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_file.c -------------------------------------------------------------------------------- /frotz/src/curses/ux_frotz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_frotz.h -------------------------------------------------------------------------------- /frotz/src/curses/ux_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_init.c -------------------------------------------------------------------------------- /frotz/src/curses/ux_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_input.c -------------------------------------------------------------------------------- /frotz/src/curses/ux_pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_pic.c -------------------------------------------------------------------------------- /frotz/src/curses/ux_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_screen.c -------------------------------------------------------------------------------- /frotz/src/curses/ux_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_setup.h -------------------------------------------------------------------------------- /frotz/src/curses/ux_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/curses/ux_text.c -------------------------------------------------------------------------------- /frotz/src/dos/bcblorb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/bcblorb.c -------------------------------------------------------------------------------- /frotz/src/dos/bcblorb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/bcblorb.h -------------------------------------------------------------------------------- /frotz/src/dos/bcfrotz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/bcfrotz.h -------------------------------------------------------------------------------- /frotz/src/dos/bcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/bcinit.c -------------------------------------------------------------------------------- /frotz/src/dos/bcinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/bcinput.c -------------------------------------------------------------------------------- /frotz/src/dos/bcmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/bcmouse.c -------------------------------------------------------------------------------- /frotz/src/dos/bcpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/bcpic.c -------------------------------------------------------------------------------- /frotz/src/dos/bcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/bcsample.c -------------------------------------------------------------------------------- /frotz/src/dos/bcscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/bcscreen.c -------------------------------------------------------------------------------- /frotz/src/dos/bctext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/bctext.c -------------------------------------------------------------------------------- /frotz/src/dos/blorb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/blorb.h -------------------------------------------------------------------------------- /frotz/src/dos/blorblow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/blorblow.h -------------------------------------------------------------------------------- /frotz/src/dos/fontdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dos/fontdata.h -------------------------------------------------------------------------------- /frotz/src/dumb/dumb_frotz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dumb/dumb_frotz.h -------------------------------------------------------------------------------- /frotz/src/dumb/dumb_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dumb/dumb_init.c -------------------------------------------------------------------------------- /frotz/src/dumb/dumb_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dumb/dumb_input.c -------------------------------------------------------------------------------- /frotz/src/dumb/dumb_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dumb/dumb_output.c -------------------------------------------------------------------------------- /frotz/src/dumb/dumb_pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/dumb/dumb_pic.c -------------------------------------------------------------------------------- /frotz/src/misc/findsound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/misc/findsound.sh -------------------------------------------------------------------------------- /frotz/src/sdl/samplerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/samplerate.h -------------------------------------------------------------------------------- /frotz/src/sdl/sf_aiffwav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_aiffwav.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_deffont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_deffont.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_font3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_font3.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_fonts.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_frotz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_frotz.h -------------------------------------------------------------------------------- /frotz/src/sdl/sf_ftype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_ftype.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_images.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_msg_en.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_msg_en.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_osfdlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_osfdlg.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_resample.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_resource.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_sig.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_sound.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_util.c -------------------------------------------------------------------------------- /frotz/src/sdl/sf_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/sdl/sf_video.c -------------------------------------------------------------------------------- /frotz/src/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/README -------------------------------------------------------------------------------- /frotz/src/test/crashme.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/crashme.inf -------------------------------------------------------------------------------- /frotz/src/test/crashme.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/crashme.z5 -------------------------------------------------------------------------------- /frotz/src/test/etude/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/Makefile -------------------------------------------------------------------------------- /frotz/src/test/etude/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/README -------------------------------------------------------------------------------- /frotz/src/test/etude/accentin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/accentin.inc -------------------------------------------------------------------------------- /frotz/src/test/etude/accents.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/accents.inc -------------------------------------------------------------------------------- /frotz/src/test/etude/color.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/color.inc -------------------------------------------------------------------------------- /frotz/src/test/etude/division.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/division.inc -------------------------------------------------------------------------------- /frotz/src/test/etude/etude.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/etude.inf -------------------------------------------------------------------------------- /frotz/src/test/etude/etude.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/etude.z5 -------------------------------------------------------------------------------- /frotz/src/test/etude/exittext.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/exittext.inc -------------------------------------------------------------------------------- /frotz/src/test/etude/givenin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/givenin.inc -------------------------------------------------------------------------------- /frotz/src/test/etude/header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/header.inc -------------------------------------------------------------------------------- /frotz/src/test/etude/styles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/styles.inc -------------------------------------------------------------------------------- /frotz/src/test/etude/timedch.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/timedch.inc -------------------------------------------------------------------------------- /frotz/src/test/etude/timedstr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/timedstr.inc -------------------------------------------------------------------------------- /frotz/src/test/etude/undo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/etude/undo.inc -------------------------------------------------------------------------------- /frotz/src/test/gntests.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/gntests.inf -------------------------------------------------------------------------------- /frotz/src/test/gntests.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/gntests.z5 -------------------------------------------------------------------------------- /frotz/src/test/random.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/random.inf -------------------------------------------------------------------------------- /frotz/src/test/random.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/random.z5 -------------------------------------------------------------------------------- /frotz/src/test/strictz.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/strictz.inf -------------------------------------------------------------------------------- /frotz/src/test/strictz.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/strictz.z5 -------------------------------------------------------------------------------- /frotz/src/test/unicode.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/unicode.inf -------------------------------------------------------------------------------- /frotz/src/test/unicode.z5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/frotz/src/test/unicode.z5 -------------------------------------------------------------------------------- /headless_doom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/headless_doom/Makefile -------------------------------------------------------------------------------- /headless_doom/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/headless_doom/d_main.c -------------------------------------------------------------------------------- /headless_doom/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/headless_doom/r_data.c -------------------------------------------------------------------------------- /headless_doom/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/headless_doom/w_wad.c -------------------------------------------------------------------------------- /loader/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/build.sh -------------------------------------------------------------------------------- /loader/linuxloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/linuxloader.c -------------------------------------------------------------------------------- /loader/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/load.c -------------------------------------------------------------------------------- /loader/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/load.h -------------------------------------------------------------------------------- /loader/make_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/make_program.py -------------------------------------------------------------------------------- /loader/offset.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/offset.x -------------------------------------------------------------------------------- /loader/setup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/setup.s -------------------------------------------------------------------------------- /loader/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/syscall.c -------------------------------------------------------------------------------- /loader/unoffset.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/unoffset.x -------------------------------------------------------------------------------- /loader/winloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/winloader.c -------------------------------------------------------------------------------- /loader/winshims.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/loader/winshims.s -------------------------------------------------------------------------------- /templeos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/templeos.png -------------------------------------------------------------------------------- /tester.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/tester.prg -------------------------------------------------------------------------------- /tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/tester.sh -------------------------------------------------------------------------------- /tester/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/tester/heap.c -------------------------------------------------------------------------------- /tester/main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/tester/main.s -------------------------------------------------------------------------------- /uClibc-0.9.33.2/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/.config -------------------------------------------------------------------------------- /uClibc-0.9.33.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/.gitignore -------------------------------------------------------------------------------- /uClibc-0.9.33.2/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/COPYING.LIB -------------------------------------------------------------------------------- /uClibc-0.9.33.2/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/Changelog -------------------------------------------------------------------------------- /uClibc-0.9.33.2/DEDICATION.mjn3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/DEDICATION.mjn3 -------------------------------------------------------------------------------- /uClibc-0.9.33.2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/INSTALL -------------------------------------------------------------------------------- /uClibc-0.9.33.2/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/MAINTAINERS -------------------------------------------------------------------------------- /uClibc-0.9.33.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/Makefile.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/Makefile.help -------------------------------------------------------------------------------- /uClibc-0.9.33.2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/Makefile.in -------------------------------------------------------------------------------- /uClibc-0.9.33.2/Makerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/Makerules -------------------------------------------------------------------------------- /uClibc-0.9.33.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/README -------------------------------------------------------------------------------- /uClibc-0.9.33.2/Rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/Rules.mak -------------------------------------------------------------------------------- /uClibc-0.9.33.2/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/TODO -------------------------------------------------------------------------------- /uClibc-0.9.33.2/docs/PORTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/docs/PORTING -------------------------------------------------------------------------------- /uClibc-0.9.33.2/docs/crt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/docs/crt.txt -------------------------------------------------------------------------------- /uClibc-0.9.33.2/docs/defines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/docs/defines.txt -------------------------------------------------------------------------------- /uClibc-0.9.33.2/docs/man/ldconfig.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/docs/man/ldconfig.8 -------------------------------------------------------------------------------- /uClibc-0.9.33.2/docs/man/ldd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/docs/man/ldd.1 -------------------------------------------------------------------------------- /uClibc-0.9.33.2/docs/sigaction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/docs/sigaction.txt -------------------------------------------------------------------------------- /uClibc-0.9.33.2/docs/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/docs/threads.txt -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/alpha/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_alpha=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/arm/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_arm=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/avr32/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_avr32=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/bfin/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_bfin=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/cris/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_cris=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/e1/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_e1=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/frv/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_frv=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/h8300/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_h8300=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/hppa/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_hppa=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/i386/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_i386=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/i960/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_i960=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/ia64/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_ia64=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/m68k/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_m68k=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/microblaze/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_microblaze=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/mips/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_mips=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/nios/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_nios=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/nios2/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_nios2=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/powerpc/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_powerpc=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/sh/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_sh=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/sh64/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_sh64=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/sparc/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_sparc=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/v850/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_v850=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/vax/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_vax=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Configs/defconfigs/x86_64/defconfig: -------------------------------------------------------------------------------- 1 | TARGET_x86_64=y 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/Makefile.in -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/conf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/expr.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/expr.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/gconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/gconf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/lkc.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/mconf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/menu.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/qconf.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/util.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/zconf.l -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/config/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/config/zconf.y -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/LOCALES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/locale/LOCALES -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/locale/README -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/af_ZA: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/bn_BD: -------------------------------------------------------------------------------- 1 | % TODO: Bengali sorting should be added 2 | copy "iso14651_t1" 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/de_BE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/de_CH: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/de_LU: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/el_GR: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/en_AU: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/en_BW: -------------------------------------------------------------------------------- 1 | copy "en_ZA" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/en_DK: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/en_HK: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/en_IE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/en_NZ: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/en_ZA: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/en_ZW: -------------------------------------------------------------------------------- 1 | copy "en_ZA" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_AR: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_BO: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_CL: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_CO: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_CR: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_DO: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_EC: -------------------------------------------------------------------------------- 1 | copy "es_US" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_GT: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_HN: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_MX: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_NI: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_PA: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_PE: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_PR: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_PY: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_SV: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_UY: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/es_VE: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/eu_ES: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/fo_FO: -------------------------------------------------------------------------------- 1 | copy "da_DK" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/fr_BE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/fr_CA: -------------------------------------------------------------------------------- 1 | copy "en_CA" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/fr_CH: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/fr_LU: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/ga_IE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/gd_GB: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/gl_ES: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/gv_GB: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/he_IL: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/id_ID: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/it_CH: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/it_IT: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/iw_IL: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/ka_GE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/kl_GL: -------------------------------------------------------------------------------- 1 | copy "da_DK" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/kw_GB: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/mk_MK: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/nl_BE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/nl_NL: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/oc_FR: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/pt_BR: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/pt_PT: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/sk_SK: -------------------------------------------------------------------------------- 1 | copy "cs_CZ" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/sv_FI: -------------------------------------------------------------------------------- 1 | copy "fi_FI" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/ti_ER: -------------------------------------------------------------------------------- 1 | copy "am_ET" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/ti_ET: -------------------------------------------------------------------------------- 1 | copy "am_ET" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/ur_PK: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/wa_BE: -------------------------------------------------------------------------------- 1 | copy "fr_BE" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/zh_CN: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/locale/collation/zh_TW: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | unifdef 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/extra/scripts/getent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/extra/scripts/getent -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/.gitignore -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/_lfs_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/_lfs_64.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/a.out.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/alloca.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/ar.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/arpa/ftp.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/arpa/inet.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/arpa/tftp.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/assert.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/atomic.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/byteswap.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/complex.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/cpio.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/crypt.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/ctype.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/dirent.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/dlfcn.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/elf.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/endian.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/err.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/errno.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/error.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/execinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/execinfo.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/fcntl.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/features.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/fenv.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/fnmatch.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/fts.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/ftw.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/getopt.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/glob.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/grp.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/iconv.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/ieee754.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/ifaddrs.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/inttypes.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/langinfo.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/lastlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/lastlog.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/libgen.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/libintl.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/limits.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/link.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/locale.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/malloc.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/math.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/memory.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/mntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/mntent.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/mqueue.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/net/if.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/net/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/net/if_arp.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/net/if_ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/net/if_ppp.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/net/ppp-comp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/net/route.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/netdb.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/netinet/in.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/netinet/ip.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/netipx/ipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/netipx/ipx.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/nl_types.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/obstack.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/paths.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/printf.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/pty.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/pwd.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/regex.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/regexp.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/resolv.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/rpc/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/rpc/auth.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/rpc/clnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/rpc/clnt.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/rpc/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/rpc/netdb.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/rpc/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/rpc/rpc.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/rpc/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/rpc/svc.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/rpc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/rpc/types.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/rpc/xdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/rpc/xdr.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sched.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/scsi/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/scsi/scsi.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/scsi/sg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/scsi/sg.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/search.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/setjmp.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sgtty.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/shadow.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/signal.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/stdint.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/stdio.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/stdio_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/stdio_ext.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/stdlib.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/string.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/strings.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/cdefs.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/dir.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/file.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/fsuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/fsuid.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/ioctl.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/ipc.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/kd.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/klog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/klog.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/mman.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/mount.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/msg.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/mtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/mtio.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/param.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/poll.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/queue.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/quota.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/reboot.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/select.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/sem.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/shm.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/socket.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/stat.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/statfs.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/swap.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/sysctl.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/syslog.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/time.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/timeb.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/times.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/timex.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/types.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/uio.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/un.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/unistd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/ustat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/ustat.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/vfs.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/wait.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sys/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sys/xattr.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/sysexits.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/tar.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/termio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/termio.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/termios.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/tgmath.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/time.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/tls.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/ttyent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/ttyent.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/ucontext.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/ulimit.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/unistd.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/ustat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/utime.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/utmp.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/utmpx.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/values.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/wait.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/wchar-stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/wchar-stub.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/wchar.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/wctype.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/wordexp.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/include/xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/include/xlocale.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/COPYRIGHT -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/Makefile.in -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/README -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/include/dlfcn.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/include/ldso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/include/ldso.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/ldso/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/avr32/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/c6x/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/cris/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/dl-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/ldso/dl-array.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/dl-debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/ldso/dl-debug.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/dl-elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/ldso/dl-elf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/dl-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/ldso/dl-hash.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/dl-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/ldso/dl-tls.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/frv/dl-inlines.h: -------------------------------------------------------------------------------- 1 | #include "../fdpic/dl-inlines.h" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/frv/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/i386/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/ldso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/ldso/ldso.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/m68k/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/microblaze/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/mips/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/powerpc/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/sparc/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/x86_64/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/ldso/xtensa/dl-syscalls.h: -------------------------------------------------------------------------------- 1 | /* stub for arch-specific syscall issues */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/libdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/libdl/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/libdl/libdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/libdl/libdl.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/man/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/man/dlopen.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/man/dlopen.3 -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/man/ld.so.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/man/ld.so.8 -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/man/ld.so.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/man/ld.so.texi -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/man/ldconfig.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/man/ldconfig.8 -------------------------------------------------------------------------------- /uClibc-0.9.33.2/ldso/man/ldd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/ldso/man/ldd.1 -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/Makefile.in -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/accept.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/accept4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/accept4.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/addr.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/bind.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/connect.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/decodea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/decodea.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/decoded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/decoded.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/decodeh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/decodeh.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/decodep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/decodep.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/decodeq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/decodeq.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/encodea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/encodea.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/encoded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/encoded.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/encodeh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/encodeh.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/encodep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/encodep.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/encodeq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/encodeq.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/ethers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/ethers.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/getnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/getnet.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/getproto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/getproto.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/herror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/herror.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/hostid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/hostid.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/if_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/if_index.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/ifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/ifaddrs.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/in6_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/in6_addr.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/inet_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/inet_net.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/lengthd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/lengthd.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/lengthq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/lengthq.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/listen.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/ns_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/ns_name.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/ns_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/ns_parse.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/ntohl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/ntohl.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/ntop.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/opensock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/opensock.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/recv.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/recvfrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/recvfrom.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/recvmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/recvmsg.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/res_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/res_comp.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/res_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/res_data.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/res_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/res_init.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/resolv.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/rpc/rcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/rpc/rcmd.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/rpc/svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/rpc/svc.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/rpc/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/rpc/xdr.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/send.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/sendmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/sendmsg.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/sendto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/sendto.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/shutdown.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/inet/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/inet/socket.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/misc/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/misc/fts/fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/misc/fts/fts.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/misc/ftw/ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/misc/ftw/ftw.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/pwd_grp/getpw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/pwd_grp/getpw.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/signal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/signal/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/signal/killpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/signal/killpg.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/signal/raise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/signal/raise.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/signal/sigjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/signal/sigjmp.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/signal/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/signal/signal.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/signal/sigset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/signal/sigset.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/_READ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/_READ.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/_WRITE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/_WRITE.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/__flbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/__flbf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/_fopen.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/_fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/_fwrite.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/_rfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/_rfill.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/_scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/_scanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/_stdio.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/_stdio.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/ctermid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/ctermid.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/dprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/dprintf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fclose.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fdopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fdopen.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/feof.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/ferror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/ferror.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fflush.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fgetc.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fgetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fgetpos.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fgets.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fgetwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fgetwc.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fgetws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fgetws.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fileno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fileno.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fopen.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fopen64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fopen64.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fprintf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fputc.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fputs.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fputwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fputwc.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fputws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fputws.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fread.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/freopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/freopen.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fscanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fseeko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fseeko.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fsetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fsetpos.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/ftello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/ftello.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fwide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fwide.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fwrite.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/fwscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/fwscanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/getchar.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/getline.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/gets.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/getw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/getw.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/perror.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/popen.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/printf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/putchar.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/puts.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/putw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/putw.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/remove.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/rewind.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/scanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/setbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/setbuf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/setvbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/setvbuf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/sprintf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/sscanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/swscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/swscanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/tempnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/tempnam.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/tmpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/tmpfile.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/tmpnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/tmpnam.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/ungetc.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/ungetwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/ungetwc.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/vfscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/vfscanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/vprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/vprintf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/vscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/vscanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/vsscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/vsscanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/vwscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/vwscanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/wprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/wprintf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdio/wscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdio/wscanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/a64l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/a64l.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/abort.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/abs.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/atexit.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/atof.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/atoi.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/atol.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/atoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/atoll.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/div.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/exit.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/gcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/gcvt.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/getenv.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/getpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/getpt.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/l64a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/l64a.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/labs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/labs.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/ldiv.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/llabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/llabs.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/lldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/lldiv.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/mblen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/mblen.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/mbtowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/mbtowc.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/mktemp.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/qsort.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/rand.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/rand_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/rand_r.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/random.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/seed48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/seed48.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/setenv.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/stdlib.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/strtod.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/strtof.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/strtol.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/system.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/valloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/valloc.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/wcstod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/wcstod.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/wcstof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/wcstof.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/wcstol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/wcstol.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/stdlib/wctomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/stdlib/wctomb.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/string/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/string/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/string/bcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/string/bcopy.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/string/bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/string/bzero.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/string/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/string/ffs.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/string/ffsll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/string/ffsll.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/string/sparc/bcopy.c: -------------------------------------------------------------------------------- 1 | /* bcopy is in memcpy.S */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/string/sparc/bzero.c: -------------------------------------------------------------------------------- 1 | /* bzero is in memset.S */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/sysdeps/linux/avr32/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #define __WORDSIZE 32 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/sysdeps/linux/common/bits/byteswap.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/sysdeps/linux/common/bits/mman.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/sysdeps/linux/cris/libc.map: -------------------------------------------------------------------------------- 1 | U { 2 | local: __sigjmp_save; 3 | }; 4 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/sysdeps/linux/frv/xstatconv.c: -------------------------------------------------------------------------------- 1 | /* We don't need any of this. */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/sysdeps/linux/h8300/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #define __WORDSIZE 32 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/unistd/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/unistd/exec.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libc/unistd/swab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libc/unistd/swab.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libcrypt/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libcrypt/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libcrypt/crypt.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libcrypt/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libcrypt/des.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libcrypt/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libcrypt/md5.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libcrypt/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libcrypt/sha256.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libcrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libcrypt/sha256.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libcrypt/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libcrypt/sha512.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libcrypt/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libcrypt/sha512.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libintl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libintl/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libintl/intl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libintl/intl.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/Makefile.in -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/README -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/carg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/carg.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/cexp.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_acos.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_acosh.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_asin.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_atan2.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_atanh.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_cosh.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_exp.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_fmod.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_hypot.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_j0.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_j1.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_jn.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_lgamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_lgamma_r.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_log.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_log10.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_log2.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_pow.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_remainder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_remainder.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_scalb.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_sinh.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/e_sqrt.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/k_cos.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/k_sin.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/k_standard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/k_standard.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/k_tan.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/nan.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_asinh.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_atan.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_cbrt.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_ceil.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_copysign.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_cos.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_erf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_expm1.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_fabs.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_fdim.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_finite.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_finitef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_finitef.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_floor.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_fma.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_fmax.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_fmin.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_frexp.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_ilogb.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_isinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_isinf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_isinff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_isinff.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_isnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_isnan.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_isnanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_isnanf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_ldexp.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_llrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_llrint.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_llround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_llround.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_log1p.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_logb.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_lrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_lrint.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_lround.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_matherr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_matherr.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_modf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_nextafter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_nextafter.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_remquo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_remquo.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_rint.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_round.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_scalbn.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_signbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_signbit.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_signbitf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_signbitf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_signgam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_signgam.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_sin.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_tan.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_tanh.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/s_trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/s_trunc.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/sincos.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/w_cabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/w_cabs.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libm/w_exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libm/w_exp2.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libnsl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libnsl/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libnsl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libnsl/Makefile.in -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libnsl/nsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libnsl/nsl.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/linuxthreads.old_db/Banner: -------------------------------------------------------------------------------- 1 | libthread_db work sponsored by Alpha Processor Inc 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/linuxthreads/.cvsignore: -------------------------------------------------------------------------------- 1 | .cvsignore 2 | *.os 3 | Makefile.in 4 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/linuxthreads/sysdeps/pthread/.cvsignore: -------------------------------------------------------------------------------- 1 | .cvsignore 2 | *.os 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/linuxthreads/sysdeps/pthread/semaphore.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/linuxthreads/sysdeps/unix/sysv/linux/.cvsignore: -------------------------------------------------------------------------------- 1 | .cvsignore 2 | *.os 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/linuxthreads_db/Banner: -------------------------------------------------------------------------------- 1 | libthread_db work sponsored by Alpha Processor Inc 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/nptl/errno_location.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/nptl/sysdeps/pthread/bits/sigthread.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/nptl/sysdeps/pthread/rt-unwind-resume.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_create.c: -------------------------------------------------------------------------------- 1 | #include "../x86_64/timer_create.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_delete.c: -------------------------------------------------------------------------------- 1 | #include "../x86_64/timer_delete.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/nptl/sysdeps/unix/sysv/linux/mips/fork.c: -------------------------------------------------------------------------------- 1 | #include "../i386/fork.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/fork.c: -------------------------------------------------------------------------------- 1 | #include "../i386/fork.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/nptl/sysdeps/unix/sysv/linux/pt-pread_pwrite.c: -------------------------------------------------------------------------------- 1 | #include "pread_write.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/nptl/sysdeps/x86_64/pthread_spin_init.c: -------------------------------------------------------------------------------- 1 | #include "../i386/pthread_spin_init.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libpthread/nptl/sysdeps/x86_64/pthread_spin_lock.c: -------------------------------------------------------------------------------- 1 | #include "../i386/pthread_spin_lock.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libresolv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libresolv/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libresolv/resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libresolv/resolv.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/librt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/librt/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/librt/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/librt/Makefile.in -------------------------------------------------------------------------------- /uClibc-0.9.33.2/librt/mq_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/librt/mq_close.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/librt/mq_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/librt/mq_notify.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/librt/mq_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/librt/mq_open.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/librt/mq_receive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/librt/mq_receive.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/librt/mq_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/librt/mq_send.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/librt/mq_unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/librt/mq_unlink.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/librt/rt_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/librt/rt_stubs.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/librt/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/librt/shm.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libutil/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libutil/forkpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libutil/forkpty.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libutil/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libutil/login.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libutil/logout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libutil/logout.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libutil/logwtmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libutil/logwtmp.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/libutil/openpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/libutil/openpty.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/.gitignore -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/API/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/ftw-OB.SUSv4.syms: -------------------------------------------------------------------------------- 1 | ftw 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/ftw.SUSv4.syms: -------------------------------------------------------------------------------- 1 | nftw 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/glob.SUSv4.syms: -------------------------------------------------------------------------------- 1 | glob 2 | globfree 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/grp-XSI.SUSv4.syms: -------------------------------------------------------------------------------- 1 | setgrent 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/math-XSI.SUSv4.syms: -------------------------------------------------------------------------------- 1 | j0 2 | j1 3 | jn 4 | y0 5 | y1 6 | yn 7 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/pthread-TCT.SUSv4.syms: -------------------------------------------------------------------------------- 1 | pthread_getcpuclockid 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/sched.SUSv4.syms: -------------------------------------------------------------------------------- 1 | sched_yield 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/setjmp-CX.SUSv4.syms: -------------------------------------------------------------------------------- 1 | siglongjmp 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/setjmp-OBXSI.SUSv4.syms: -------------------------------------------------------------------------------- 1 | _longjmp 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/setjmp.SUSv4.syms: -------------------------------------------------------------------------------- 1 | longjmp 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/signal-XSI.SUSv4.syms: -------------------------------------------------------------------------------- 1 | killpg 2 | sigaltstack 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/signal.SUSv4.syms: -------------------------------------------------------------------------------- 1 | raise 2 | void 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/stdio-OB.SUSv4.syms: -------------------------------------------------------------------------------- 1 | gets 2 | tmpnam 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/stdio-OBXSI.SUSv4.syms: -------------------------------------------------------------------------------- 1 | tempnam 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/stdlib-ADV.SUSv4.syms: -------------------------------------------------------------------------------- 1 | posix_memalign 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/stdlib-OBCX.SUSv4.syms: -------------------------------------------------------------------------------- 1 | rand_r 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/string-XSI.SUSv4.syms: -------------------------------------------------------------------------------- 1 | memccpy 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/strings-XSI.SUSv4.syms: -------------------------------------------------------------------------------- 1 | ffs 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/sys_mman-ADV.SUSv4.syms: -------------------------------------------------------------------------------- 1 | posix_madvise 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/sys_mman-SHM.SUSv4.syms: -------------------------------------------------------------------------------- 1 | shm_open 2 | shm_unlink 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/sys_mman-XSI|SIO.SUSv4.syms: -------------------------------------------------------------------------------- 1 | msync 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/sys_time.SUSv4.syms: -------------------------------------------------------------------------------- 1 | select 2 | utimes 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/sys_uio.SUSv4.syms: -------------------------------------------------------------------------------- 1 | readv 2 | writev 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/unistd-CX.SUSv4.syms: -------------------------------------------------------------------------------- 1 | ctermid 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/unistd-FSC.SUSv4.syms: -------------------------------------------------------------------------------- 1 | fsync 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/unistd-OBXSI.SUSv4.syms: -------------------------------------------------------------------------------- 1 | setpgrp 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/unistd-SIO.SUSv4.syms: -------------------------------------------------------------------------------- 1 | fdatasync 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/API/wordexp.SUSv4.syms: -------------------------------------------------------------------------------- 1 | wordexp 2 | wordfree 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/README -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/Rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/Rules.mak -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/Test.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/Test.mak -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/args/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/args/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/crypt/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/crypt/crypt.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/ctype/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/ctype/ctype.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/dlopen/dltest2.c: -------------------------------------------------------------------------------- 1 | #include "dltest.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/dlopen/libafk-temp.c: -------------------------------------------------------------------------------- 1 | /* the actual contents doesnt matter */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/dlopen/libafk.c: -------------------------------------------------------------------------------- 1 | /* the actual contents doesnt matter */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/dlopen/libtest3.c: -------------------------------------------------------------------------------- 1 | #include "libtest.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/dlopen/libundef.c: -------------------------------------------------------------------------------- 1 | /* the actual contents doesnt matter */ 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/inet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/inet/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/math/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/math/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/math/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/math/fenv.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/math/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/math/gamma.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/math/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/math/ilogb.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/math/rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/math/rint.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/misc/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/misc/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/misc/dirent.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/misc/dirent64.c: -------------------------------------------------------------------------------- 1 | #include "dirent.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/misc/fdopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/misc/fdopen.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/misc/outb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/misc/outb.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/misc/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/misc/popen.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/misc/seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/misc/seek.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/misc/sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/misc/sem.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/misc/stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/misc/stdarg.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/mmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/mmap/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/mmap/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/mmap/mmap.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/mmap/mmap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/mmap/mmap2.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/mmap/mmap64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/mmap/mmap64.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/nptl/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/eintr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/nptl/eintr.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancel23.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel22.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancel5.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel4.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx10.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel10.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx11.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel11.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx12.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel12.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx13.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel13.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx14.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel14.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx15.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel15.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx16.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel16.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx18.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel18.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx2.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel2.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx20.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel20.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx21.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel21.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx3.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel3.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx4.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel4.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx6.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel6.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx7.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel7.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx8.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel8.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cancelx9.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel9.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cleanupx0.c: -------------------------------------------------------------------------------- 1 | #include "tst-cleanup0.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cleanupx1.c: -------------------------------------------------------------------------------- 1 | #include "tst-cleanup1.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cleanupx2.c: -------------------------------------------------------------------------------- 1 | #include "tst-cleanup2.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cleanupx3.c: -------------------------------------------------------------------------------- 1 | #include "tst-cleanup3.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cleanupx4.c: -------------------------------------------------------------------------------- 1 | #include "tst-cleanup4.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cond13.c: -------------------------------------------------------------------------------- 1 | #define USE_COND_SIGNAL 1 2 | #include "tst-cond12.c" 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-cond17.c: -------------------------------------------------------------------------------- 1 | #define UNLOCK_AFTER_BROADCAST 1 2 | #include "tst-cond16.c" 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-initializers1-c89.c: -------------------------------------------------------------------------------- 1 | #include "tst-initializers1.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-initializers1-c99.c: -------------------------------------------------------------------------------- 1 | #include "tst-initializers1.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-initializers1-gnu89.c: -------------------------------------------------------------------------------- 1 | #include "tst-initializers1.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-initializers1-gnu99.c: -------------------------------------------------------------------------------- 1 | #include "tst-initializers1.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-join6.c: -------------------------------------------------------------------------------- 1 | #define WAIT_IN_CHILD 1 2 | #include "tst-join5.c" 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-mutex5a.c: -------------------------------------------------------------------------------- 1 | #define TYPE PTHREAD_MUTEX_ADAPTIVE_NP 2 | #include "tst-mutex5.c" 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-oddstacklimit.c: -------------------------------------------------------------------------------- 1 | #include "tst-basic1.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-oncex3.c: -------------------------------------------------------------------------------- 1 | #include "tst-once3.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/nptl/tst-oncex4.c: -------------------------------------------------------------------------------- 1 | #include "tst-once4.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/pthread/ex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/pthread/ex1.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/pthread/ex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/pthread/ex2.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/pthread/ex3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/pthread/ex3.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/pthread/ex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/pthread/ex4.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/pthread/ex5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/pthread/ex5.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/pthread/ex6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/pthread/ex6.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/pthread/ex7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/pthread/ex7.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/regex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/regex/LICENSE -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/rpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/rpc/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/silly/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/silly/hello.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/silly/tiny.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) 4 | { 5 | _exit(42); 6 | } 7 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/stat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/stat/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/stat/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/stat/stat.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/stat/stat64.c: -------------------------------------------------------------------------------- 1 | #include "stat.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/stdio/64bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/stdio/64bit.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/testsuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/testsuite.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/time/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/time/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/time/time.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/tls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/tls/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/tls/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/tls/README -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/tls/tst-tls1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls1.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/tls/tst-tls2-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls2.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/tls/tst-tls9-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls9.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/tls/tst-tlsmod10.c: -------------------------------------------------------------------------------- 1 | #include "tst-tlsmod8.c" 2 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/tls/tst-tlsmod14b.c: -------------------------------------------------------------------------------- 1 | #define FCT in_dso2 2 | #include "tst-tlsmod14a.c" 3 | -------------------------------------------------------------------------------- /uClibc-0.9.33.2/test/unistd/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/test/unistd/fork.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/utils/.gitignore -------------------------------------------------------------------------------- /uClibc-0.9.33.2/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/utils/Makefile -------------------------------------------------------------------------------- /uClibc-0.9.33.2/utils/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/utils/Makefile.in -------------------------------------------------------------------------------- /uClibc-0.9.33.2/utils/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/utils/bswap.h -------------------------------------------------------------------------------- /uClibc-0.9.33.2/utils/getconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/utils/getconf.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/utils/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/utils/iconv.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/utils/ldconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/utils/ldconfig.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/utils/ldd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/utils/ldd.c -------------------------------------------------------------------------------- /uClibc-0.9.33.2/utils/porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitham/frotz/HEAD/uClibc-0.9.33.2/utils/porting.h --------------------------------------------------------------------------------