├── .cvsignore ├── .gitignore ├── COPYING ├── COPYING.LIB ├── COPYING.LIBGLOSS ├── COPYING.NEWLIB ├── COPYING3 ├── COPYING3.LIB ├── ChangeLog ├── MAINTAINERS ├── Makefile.def ├── Makefile.in ├── Makefile.tpl ├── README ├── README-maintainer-mode ├── README.md ├── compile ├── config-ml.in ├── config.guess ├── config.rpath ├── config.sub ├── config ├── ChangeLog ├── acinclude.m4 ├── acx.m4 ├── asmcfi.m4 ├── bootstrap-O1.mk ├── bootstrap-O3.mk ├── bootstrap-asan.mk ├── bootstrap-debug-big.mk ├── bootstrap-debug-ckovw.mk ├── bootstrap-debug-lean.mk ├── bootstrap-debug-lib.mk ├── bootstrap-debug.mk ├── bootstrap-lto.mk ├── bootstrap-time.mk ├── bootstrap-ubsan.mk ├── cloog.m4 ├── codeset.m4 ├── depstand.m4 ├── dfp.m4 ├── elf.m4 ├── enable.m4 ├── extensions.m4 ├── futex.m4 ├── gc++filt.m4 ├── gettext-sister.m4 ├── gettext.m4 ├── glibc21.m4 ├── gthr.m4 ├── gxx-include-dir.m4 ├── iconv.m4 ├── intdiv0.m4 ├── inttypes-pri.m4 ├── inttypes.m4 ├── inttypes_h.m4 ├── isl.m4 ├── largefile.m4 ├── lcmessage.m4 ├── ld-symbolic.m4 ├── lead-dot.m4 ├── lib-ld.m4 ├── lib-link.m4 ├── lib-prefix.m4 ├── libstdc++-raw-cxx.m4 ├── lthostflags.m4 ├── math.m4 ├── mh-cygwin ├── mh-darwin ├── mh-djgpp ├── mh-mingw ├── mh-pa ├── mh-pa-hpux10 ├── mh-ppc-aix ├── mmap.m4 ├── mt-alphaieee ├── mt-d30v ├── mt-gnu ├── mt-mips-elfoabi ├── mt-mips-gnu ├── mt-mips16-compat ├── mt-ospace ├── mt-sde ├── mt-spu ├── multi.m4 ├── nls.m4 ├── no-executables.m4 ├── override.m4 ├── picflag.m4 ├── plugins.m4 ├── po.m4 ├── proginstall.m4 ├── progtest.m4 ├── stdint.m4 ├── stdint_h.m4 ├── tcl.m4 ├── tls.m4 ├── uintmax_t.m4 ├── ulonglong.m4 ├── unwind_ipinfo.m4 ├── warnings.m4 ├── weakref.m4 └── zlib.m4 ├── configure ├── configure.ac ├── depcomp ├── djunpack.bat ├── etc ├── ChangeLog ├── Makefile.in ├── add-log.el ├── add-log.vi ├── configbuild.ein ├── configbuild.fig ├── configbuild.jin ├── configbuild.tin ├── configdev.ein ├── configdev.fig ├── configdev.jin ├── configdev.tin ├── configure ├── configure.in ├── configure.texi ├── fdl.texi ├── gnu-oids.texi ├── make-stds.texi ├── standards.texi └── texi2pod.pl ├── install-sh ├── libgloss ├── ChangeLog ├── ChangeLog.nano ├── Makefile.in ├── README ├── aarch64 │ ├── Makefile.in │ ├── _exit.c │ ├── _kill.c │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── cpu-init │ │ ├── Makefile.in │ │ ├── aclocal.m4 │ │ ├── configure │ │ ├── configure.in │ │ └── rdimon-aem-el3.S │ ├── crt0.S │ ├── elf-aem-validation.specs │ ├── elf-aem-ve.specs │ ├── elf-rdimon.specs │ ├── ftruncate.c │ ├── libcfunc.c │ ├── svc.h │ ├── syscalls.c │ └── truncate.c ├── acinclude.m4 ├── aclocal.m4 ├── arm │ ├── Makefile.in │ ├── _exit.c │ ├── _kill.c │ ├── aclocal.m4 │ ├── arm.h │ ├── coff-iq80310.specs │ ├── coff-pid.specs │ ├── coff-rdimon.specs │ ├── coff-rdpmon.specs │ ├── coff-redboot.ld │ ├── coff-redboot.specs │ ├── configure │ ├── configure.in │ ├── cpu-init │ │ ├── Makefile.in │ │ └── rdimon-aem.S │ ├── crt0.S │ ├── elf-aprofile-validation.specs │ ├── elf-aprofile-ve.specs │ ├── elf-iq80310.specs │ ├── elf-linux.specs │ ├── elf-nano.specs │ ├── elf-pid.specs │ ├── elf-rdimon.specs │ ├── elf-rdpmon.specs │ ├── elf-redboot.ld │ ├── elf-redboot.specs │ ├── ftruncate.c │ ├── libcfunc.c │ ├── linux-crt0.c │ ├── linux-syscall.h │ ├── linux-syscalls0.S │ ├── linux-syscalls1.c │ ├── redboot-crt0.S │ ├── redboot-syscalls.c │ ├── swi.h │ ├── syscall.h │ ├── syscalls.c │ ├── trap.S │ └── truncate.c ├── bfin │ ├── Makefile.in │ ├── _exit.c │ ├── aclocal.m4 │ ├── basiccrt.S │ ├── bf504.ld │ ├── bf506.ld │ ├── bf512.ld │ ├── bf514.ld │ ├── bf516.ld │ ├── bf518.ld │ ├── bf522.ld │ ├── bf523.ld │ ├── bf524.ld │ ├── bf525.ld │ ├── bf526.ld │ ├── bf527.ld │ ├── bf531.ld │ ├── bf532.ld │ ├── bf533.ld │ ├── bf534.ld │ ├── bf536.ld │ ├── bf537.ld │ ├── bf538.ld │ ├── bf539.ld │ ├── bf542.ld │ ├── bf544.ld │ ├── bf547.ld │ ├── bf548.ld │ ├── bf549.ld │ ├── bf561.ld │ ├── bf561a.ld │ ├── bf561b.ld │ ├── bf561m.ld │ ├── bf592.ld │ ├── bf606.ld │ ├── bf606c0.ld │ ├── bf606c1.ld │ ├── bf606m.ld │ ├── bf607.ld │ ├── bf607c0.ld │ ├── bf607c1.ld │ ├── bf607m.ld │ ├── bf608.ld │ ├── bf608c0.ld │ ├── bf608c1.ld │ ├── bf608m.ld │ ├── bf609.ld │ ├── bf609c0.ld │ ├── bf609c1.ld │ ├── bf609m.ld │ ├── bfin-common-mc.ld │ ├── bfin-common-mc0.ld │ ├── bfin-common-sc.ld │ ├── clear_cache_range.c │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── include │ │ ├── blackfin.h │ │ ├── builtins.h │ │ ├── ccblkfn.h │ │ ├── cdefBF504.h │ │ ├── cdefBF504F.h │ │ ├── cdefBF506F.h │ │ ├── cdefBF50x_base.h │ │ ├── cdefBF512.h │ │ ├── cdefBF514.h │ │ ├── cdefBF516.h │ │ ├── cdefBF518.h │ │ ├── cdefBF51x_base.h │ │ ├── cdefBF522.h │ │ ├── cdefBF523.h │ │ ├── cdefBF524.h │ │ ├── cdefBF525.h │ │ ├── cdefBF526.h │ │ ├── cdefBF527.h │ │ ├── cdefBF52x_base.h │ │ ├── cdefBF531.h │ │ ├── cdefBF532.h │ │ ├── cdefBF533.h │ │ ├── cdefBF534.h │ │ ├── cdefBF535.h │ │ ├── cdefBF536.h │ │ ├── cdefBF537.h │ │ ├── cdefBF538.h │ │ ├── cdefBF539.h │ │ ├── cdefBF53x.h │ │ ├── cdefBF542.h │ │ ├── cdefBF542M.h │ │ ├── cdefBF544.h │ │ ├── cdefBF544M.h │ │ ├── cdefBF547.h │ │ ├── cdefBF547M.h │ │ ├── cdefBF548.h │ │ ├── cdefBF548M.h │ │ ├── cdefBF549.h │ │ ├── cdefBF549M.h │ │ ├── cdefBF54x_base.h │ │ ├── cdefBF561.h │ │ ├── cdefBF592-A.h │ │ ├── cdefBF59x_base.h │ │ ├── cdefBF606.h │ │ ├── cdefBF607.h │ │ ├── cdefBF608.h │ │ ├── cdefBF609.h │ │ ├── cdef_LPBlackfin.h │ │ ├── cdefblackfin.h │ │ ├── cplb.h │ │ ├── cplbtab.h │ │ ├── defBF504.h │ │ ├── defBF504F.h │ │ ├── defBF506F.h │ │ ├── defBF50x_base.h │ │ ├── defBF512.h │ │ ├── defBF514.h │ │ ├── defBF516.h │ │ ├── defBF518.h │ │ ├── defBF51x_base.h │ │ ├── defBF522.h │ │ ├── defBF523.h │ │ ├── defBF524.h │ │ ├── defBF525.h │ │ ├── defBF526.h │ │ ├── defBF527.h │ │ ├── defBF52x_base.h │ │ ├── defBF531.h │ │ ├── defBF532.h │ │ ├── defBF533.h │ │ ├── defBF534.h │ │ ├── defBF535.h │ │ ├── defBF536.h │ │ ├── defBF537.h │ │ ├── defBF538.h │ │ ├── defBF539.h │ │ ├── defBF542.h │ │ ├── defBF542M.h │ │ ├── defBF544.h │ │ ├── defBF544M.h │ │ ├── defBF547.h │ │ ├── defBF547M.h │ │ ├── defBF548.h │ │ ├── defBF548M.h │ │ ├── defBF549.h │ │ ├── defBF549M.h │ │ ├── defBF54x_base.h │ │ ├── defBF561.h │ │ ├── defBF592-A.h │ │ ├── defBF59x_base.h │ │ ├── defBF606.h │ │ ├── defBF607.h │ │ ├── defBF608.h │ │ ├── defBF609.h │ │ ├── def_LPBlackfin.h │ │ ├── defblackfin.h │ │ ├── sys │ │ │ ├── _adi_platform.h │ │ │ ├── anomaly_macros_rtl.h │ │ │ ├── excause.h │ │ │ ├── exception.h │ │ │ ├── mc_typedef.h │ │ │ ├── platform.h │ │ │ └── pll.h │ │ └── sysreg.h │ └── syscalls.c ├── close.c ├── config │ ├── default.mh │ ├── default.mt │ ├── dos.mh │ ├── mips.mt │ ├── mn10200.mt │ ├── mn10300.mt │ ├── ppc.mh │ └── xc16x.mt ├── configure ├── configure.in ├── cr16 │ ├── Makefile.in │ ├── _exit.c │ ├── _getenv.c │ ├── _rename.c │ ├── aclocal.m4 │ ├── close.c │ ├── configure │ ├── configure.in │ ├── crt1.S │ ├── crti.S │ ├── crtn.S │ ├── dvz_hndl.c │ ├── flg_hndl.c │ ├── fstat.c │ ├── getpid.c │ ├── iad_hndl.c │ ├── intable.c │ ├── isatty.c │ ├── kill.c │ ├── lseek.c │ ├── open.c │ ├── putnum.c │ ├── read.c │ ├── sbrk.c │ ├── sim.ld │ ├── stat.c │ ├── svc_hndl.c │ ├── sys │ │ └── syscall.h │ ├── time.c │ ├── und_hndl.c │ ├── unlink.c │ └── write.c ├── cris │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── crti.c │ ├── crtn.c │ ├── gensyscalls │ ├── irqtable.S │ ├── lcrt0.c │ ├── linunistd.h │ ├── outbyte.c │ └── setup.S ├── crx │ ├── Makefile.in │ ├── _exit.c │ ├── _getenv.c │ ├── _rename.c │ ├── aclocal.m4 │ ├── close.c │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── crti.S │ ├── crtn.S │ ├── dvz_hndl.c │ ├── flg_hndl.c │ ├── fstat.c │ ├── getpid.c │ ├── iad_hndl.c │ ├── intable.c │ ├── isatty.c │ ├── kill.c │ ├── lseek.c │ ├── open.c │ ├── putnum.c │ ├── read.c │ ├── sbrk.c │ ├── sim.ld │ ├── stat.c │ ├── svc_hndl.c │ ├── time.c │ ├── und_hndl.c │ ├── unlink.c │ └── write.c ├── d30v │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── inbyte.c │ ├── outbyte.c │ └── syscalls.c ├── debug.c ├── debug.h ├── doc │ ├── Makefile.in │ ├── configure │ ├── configure.in │ └── porting.texi ├── epiphany │ ├── Makefile.in │ ├── _exit.S │ ├── _exit.c │ ├── _isatty.c │ ├── access.c │ ├── aclocal.m4 │ ├── close.c │ ├── config.h.in │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── environ.c │ ├── epiphany-config.h │ ├── epiphany-ivthandlers.S │ ├── epiphany-syscalls.c │ ├── epiphany-syscalls.h │ ├── execve.c │ ├── fork.c │ ├── fstat.c │ ├── getpid.c │ ├── gettimeofday.c │ ├── kill.c │ ├── link.c │ ├── lseek.c │ ├── open.c │ ├── read.c │ ├── sbrk.c │ ├── stat.c │ ├── times.c │ ├── unlink.c │ ├── wait.c │ └── write.c ├── fr30 │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.s │ └── syscalls.c ├── frv │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── fstat.c │ ├── getpid.c │ ├── isatty.c │ ├── kill.c │ ├── print.c │ ├── putnum.c │ ├── sbrk.c │ ├── sim-close.S │ ├── sim-exit.S │ ├── sim-inbyte.c │ ├── sim-lseek.S │ ├── sim-open.S │ ├── sim-read.S │ ├── sim-time.c │ ├── sim-unlink.S │ ├── sim-write.S │ └── stat.c ├── fstat.c ├── getpid.c ├── glue.h ├── hp74x │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── checksum.c │ ├── configure │ ├── configure.in │ ├── crt0.s │ ├── debugger.h │ ├── debugger.s │ ├── diagnose.h │ ├── hppa-defs.h │ ├── hppa.ld │ ├── io.c │ ├── iva_table.h │ ├── iva_table.s │ ├── pa_stub.c │ └── test.c ├── i386 │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── cygmon-crt0.S │ ├── cygmon-gmon.c │ ├── cygmon-gmon.h │ ├── cygmon-salib.c │ ├── cygmon-syscall.h │ └── cygmon.ld ├── i960 │ ├── Makefile.in │ ├── aclocal.m4 │ ├── asm.h │ ├── configure │ ├── configure.in │ ├── crt0.c │ ├── mon-read.c │ ├── mon-syscalls.S │ ├── mon-write.c │ ├── mon960.c │ ├── mon960.ld │ └── syscall.h ├── iq2000 │ ├── Makefile.in │ ├── _exit.c │ ├── access.c │ ├── aclocal.m4 │ ├── chmod.c │ ├── chown.c │ ├── close.c │ ├── configure │ ├── configure.in │ ├── creat.c │ ├── crt0.S │ ├── crt1.c │ ├── execv.c │ ├── execve.c │ ├── fork.c │ ├── fstat.c │ ├── getpid.c │ ├── gettime.c │ ├── isatty.c │ ├── kill.c │ ├── lseek.c │ ├── open.c │ ├── pipe.c │ ├── read.c │ ├── sbrk.c │ ├── sim.ld │ ├── stat.c │ ├── test.c │ ├── time.c │ ├── times.c │ ├── trap.c │ ├── trap.h │ ├── unlink.c │ ├── utime.c │ ├── wait.c │ └── write.c ├── isatty.c ├── kill.c ├── libnosys │ ├── Makefile.in │ ├── _exit.c │ ├── acconfig.h │ ├── aclocal.m4 │ ├── chown.c │ ├── close.c │ ├── config.h.in │ ├── configure │ ├── configure.in │ ├── environ.c │ ├── errno.c │ ├── execve.c │ ├── fork.c │ ├── fstat.c │ ├── getpid.c │ ├── gettod.c │ ├── isatty.c │ ├── kill.c │ ├── link.c │ ├── lseek.c │ ├── nosys.specs │ ├── open.c │ ├── read.c │ ├── readlink.c │ ├── sbrk.c │ ├── stat.c │ ├── symlink.c │ ├── times.c │ ├── unlink.c │ ├── wait.c │ ├── warning.h │ └── write.c ├── lm32 │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── isatty.c │ ├── scall.S │ └── sim.ld ├── lseek.c ├── m32c │ ├── Makefile.in │ ├── abort.S │ ├── aclocal.m4 │ ├── argv.S │ ├── argvlen.S │ ├── chdir.S │ ├── chmod.S │ ├── close.S │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── crtn.S │ ├── exit.S │ ├── fstat.S │ ├── genscript │ ├── getpid.S │ ├── gettimeofday.S │ ├── heaptop.S │ ├── isatty.S │ ├── kill.S │ ├── link.S │ ├── lseek.S │ ├── m32c.tmpl │ ├── m32csys.h │ ├── open.S │ ├── read.S │ ├── sample.c │ ├── sbrk.c │ ├── stat.S │ ├── time.S │ ├── times.S │ ├── unlink.S │ ├── utime.S │ ├── varvects.S │ ├── varvects.h │ └── write.S ├── m32r │ ├── Makefile.in │ ├── aclocal.m4 │ ├── chmod.c │ ├── close.c │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── eit.h │ ├── eva-stub.ld │ ├── eva.ld │ ├── exit.c │ ├── fstat.c │ ├── getpid.c │ ├── isatty.c │ ├── kill.c │ ├── lseek.c │ ├── m32r-lib.c │ ├── m32r-stub.c │ ├── mon.specs │ ├── open.c │ ├── raise.c │ ├── read.c │ ├── sbrk.c │ ├── stat.c │ ├── trap0.S │ ├── trapmon0.c │ ├── unlink.c │ ├── utime.c │ └── write.c ├── m68hc11 │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── sci-inout.S │ ├── sim-valid-m68hc11.ld │ ├── sim-valid-m68hc12.ld │ └── syscalls.c ├── m68k │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── asm.h │ ├── bcc.ld │ ├── cf-crt0.S │ ├── cf-crt1.c │ ├── cf-exit.c │ ├── cf-hosted.S │ ├── cf-isrs.c │ ├── cf-isv.S │ ├── cf-sbrk.c │ ├── cf.sc │ ├── configure │ ├── configure.in │ ├── cpu32bug.S │ ├── cpu32bug.h │ ├── crt0.S │ ├── dtor.C │ ├── fido-_exit.c │ ├── fido-crt0.S │ ├── fido-handler.c │ ├── fido-hosted.S │ ├── fido-sbrk.c │ ├── fido.h │ ├── fido.sc │ ├── fido_profiling.h │ ├── idp-inbyte.c │ ├── idp-outbyte.c │ ├── idp.ld │ ├── idpgdb.ld │ ├── io-close.c │ ├── io-exit.c │ ├── io-fstat.c │ ├── io-gdb.c │ ├── io-gettimeofday.c │ ├── io-isatty.c │ ├── io-lseek.c │ ├── io-open.c │ ├── io-read.c │ ├── io-rename.c │ ├── io-stat.c │ ├── io-system.c │ ├── io-time.c │ ├── io-unlink.c │ ├── io-write.c │ ├── io.h │ ├── leds.c │ ├── leds.h │ ├── mc68681reg.h │ ├── mc68ec.c │ ├── mvme-stub.c │ ├── mvme.S │ ├── mvme135-asm.S │ ├── mvme135.ld │ ├── mvme162.ld │ ├── mvme162lx-asm.S │ ├── sbc5204.ld │ ├── sbc5206.ld │ ├── sim-abort.c │ ├── sim-crt0.S │ ├── sim-errno.c │ ├── sim-funcs.c │ ├── sim-inbyte.c │ ├── sim-print.c │ ├── sim-sbrk.c │ ├── sim.ld │ ├── simulator.S │ └── test.c ├── mcore │ ├── Makefile.in │ ├── aclocal.m4 │ ├── close.c │ ├── cmb-exit.c │ ├── cmb-inbyte.c │ ├── cmb-outbyte.c │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── elf-cmb.ld │ ├── elf-cmb.specs │ ├── fstat.c │ ├── getpid.c │ ├── kill.c │ ├── lseek.c │ ├── open.c │ ├── pe-cmb.ld │ ├── pe-cmb.specs │ ├── print.c │ ├── putnum.c │ ├── raise.c │ ├── read.c │ ├── sbrk.c │ ├── stat.c │ ├── syscalls.S │ ├── unlink.c │ └── write.c ├── mep │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── crtn.S │ ├── default.ld │ ├── fmax.ld │ ├── gcov-io.h │ ├── gmap_default.ld │ ├── h_reset.c │ ├── handlers.c │ ├── isatty.c │ ├── mep-bb.c │ ├── mep-gmon.c │ ├── min.ld │ ├── read.c │ ├── sbrk.c │ ├── sdram-crt0.S │ ├── sim-crt0.S │ ├── sim-crtn.S │ ├── simnovec-crt0.S │ ├── simple.ld │ ├── simsdram-crt0.S │ ├── syscalls.S │ └── write.c ├── microblaze │ ├── Makefile.in │ ├── _exception_handler.S │ ├── _hw_exception_handler.S │ ├── _interrupt_handler.S │ ├── _program_clean.S │ ├── _program_init.S │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── crt1.S │ ├── crt2.S │ ├── crt3.S │ ├── crt4.S │ ├── crtinit.S │ ├── elf-gloss-linux.ld │ ├── elf-gloss-linux.specs │ ├── linux-crt0.S │ ├── linux-inbyte.c │ ├── linux-outbyte.c │ ├── linux-syscalls-wrap.c │ ├── linux-syscalls.S │ ├── linux-syscalls.h │ ├── pgcrtinit.S │ ├── sbrk.c │ ├── sim-crtinit.S │ ├── sim-pgcrtinit.S │ ├── timer.c │ ├── xil_malloc.c │ ├── xil_printf.c │ ├── xil_sbrk.c │ └── xilinx.ld ├── mips │ ├── Makefile.in │ ├── aclocal.m4 │ ├── array-io.c │ ├── array.ld │ ├── cfe.c │ ├── cfe.ld │ ├── cfe_api.c │ ├── cfe_api.h │ ├── cfe_api_int.h │ ├── cfe_error.h │ ├── cfe_mem.c │ ├── cma101.c │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── crt0_cfe.S │ ├── crt0_cygmon.S │ ├── cygmon.c │ ├── ddb-kseg0.ld │ ├── ddb.ld │ ├── dtor.C │ ├── dve.ld │ ├── dvemon.c │ ├── entry.S │ ├── idt.ld │ ├── idt32.ld │ ├── idt64.ld │ ├── idtecoff.ld │ ├── idtmon.S │ ├── jmr3904-io.c │ ├── jmr3904app-java.ld │ ├── jmr3904app.ld │ ├── jmr3904dram-java.ld │ ├── jmr3904dram.ld │ ├── lsi.ld │ ├── lsipmon.S │ ├── mti32.ld │ ├── mti64.ld │ ├── mti64_64.ld │ ├── mti64_n32.ld │ ├── nullmon.c │ ├── nullmon.ld │ ├── pmon.S │ ├── pmon.ld │ ├── regs.S │ ├── sde32.ld │ ├── sde64.ld │ ├── syscalls.c │ ├── test.c │ ├── vr4300.S │ └── vr5xxx.S ├── mn10200 │ ├── Makefile.in │ ├── _exit.c │ ├── access.c │ ├── aclocal.m4 │ ├── chmod.c │ ├── chown.c │ ├── close.c │ ├── configure │ ├── configure.in │ ├── creat.c │ ├── crt0.S │ ├── crt1.c │ ├── eval.ld │ ├── execv.c │ ├── execve.c │ ├── fork.c │ ├── fstat.c │ ├── getpid.c │ ├── gettime.c │ ├── isatty.c │ ├── kill.c │ ├── lseek.c │ ├── open.c │ ├── pipe.c │ ├── read.c │ ├── sbrk.c │ ├── sim.ld │ ├── stat.c │ ├── test.c │ ├── time.c │ ├── times.c │ ├── trap.S │ ├── trap.h │ ├── unlink.c │ ├── utime.c │ ├── wait.c │ └── write.c ├── mn10300 │ ├── Makefile.in │ ├── _exit.c │ ├── access.c │ ├── aclocal.m4 │ ├── asb2303.ld │ ├── asb2305.ld │ ├── chmod.c │ ├── chown.c │ ├── close.c │ ├── configure │ ├── configure.in │ ├── creat.c │ ├── crt0-eval.S │ ├── crt0.S │ ├── crt0_cygmon.S │ ├── crt0_redboot.S │ ├── crt1.c │ ├── cygmon.c │ ├── eval.ld │ ├── execv.c │ ├── execve.c │ ├── fork.c │ ├── fstat.c │ ├── getpid.c │ ├── gettime.c │ ├── isatty.c │ ├── kill.c │ ├── lseek.c │ ├── open.c │ ├── pipe.c │ ├── read.c │ ├── sbrk.c │ ├── sim.ld │ ├── stat.c │ ├── test.c │ ├── time.c │ ├── times.c │ ├── trap.S │ ├── trap.h │ ├── unlink.c │ ├── utime.c │ ├── wait.c │ └── write.c ├── moxie │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── fstat.c │ ├── getpid.c │ ├── isatty.c │ ├── kill.c │ ├── moxie-elf-common.ld │ ├── print.c │ ├── putnum.c │ ├── qemu-time.c │ ├── qemu-write.c │ ├── qemu.ld │ ├── sbrk.c │ ├── sim-close.S │ ├── sim-exit.S │ ├── sim-inbyte.c │ ├── sim-lseek.S │ ├── sim-lseek.c │ ├── sim-open.S │ ├── sim-read.S │ ├── sim-time.c │ ├── sim-unlink.S │ ├── sim-write.S │ ├── sim.ld │ └── stat.c ├── msp430 │ ├── Makefile.in │ ├── cio.c │ ├── cio.h │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── crt_bss.S │ ├── crt_movedata.S │ ├── crtn.S │ ├── gcrt0.S │ ├── intr_vectors.ld │ ├── memmodel.h │ ├── msp430-sim.ld │ ├── msp430.ld │ ├── msp430F5438A-l.ld │ ├── msp430F5438A-s.ld │ ├── msp430xl-sim.ld │ ├── nosyscalls.S │ ├── sbrk.c │ ├── syscalls.S │ └── write.c ├── mt │ ├── 16-002.ld │ ├── 16-003.ld │ ├── 64-001.ld │ ├── Makefile.in │ ├── access.c │ ├── aclocal.m4 │ ├── chmod.c │ ├── close.c │ ├── configure │ ├── configure.in │ ├── crt0-16-002.S │ ├── crt0-16-003.S │ ├── crt0-64-001.S │ ├── crt0-ms2.S │ ├── crt0.S │ ├── exit-16-002.c │ ├── exit-16-003.c │ ├── exit-64-001.c │ ├── exit-ms2.c │ ├── exit.c │ ├── fstat.c │ ├── getpid.c │ ├── gettime.c │ ├── isatty.c │ ├── kill.c │ ├── lseek.c │ ├── ms2.ld │ ├── open.c │ ├── read.c │ ├── sbrk.c │ ├── startup-16-002.S │ ├── startup-16-003.S │ ├── startup-64-001.S │ ├── startup-ms2.S │ ├── stat.c │ ├── time.c │ ├── times.c │ ├── trap.S │ ├── trap.h │ ├── unlink.c │ ├── utime.c │ └── write.c ├── nds32 │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── crt1.S │ ├── syscall_argv.S │ ├── syscall_argvlen.S │ ├── syscall_chdir.S │ ├── syscall_chmod.S │ ├── syscall_close.S │ ├── syscall_exit.S │ ├── syscall_extra.h │ ├── syscall_fstat.S │ ├── syscall_getpid.S │ ├── syscall_gettimeofday.S │ ├── syscall_isatty.S │ ├── syscall_kill.S │ ├── syscall_link.S │ ├── syscall_lseek.S │ ├── syscall_open.S │ ├── syscall_read.S │ ├── syscall_rename.S │ ├── syscall_sbrk.S │ ├── syscall_stat.S │ ├── syscall_system.S │ ├── syscall_time.S │ ├── syscall_times.S │ ├── syscall_unlink.S │ ├── syscall_utime.S │ └── syscall_write.S ├── open.c ├── pa │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── hp-milli.s │ ├── op50n-io.S │ ├── op50n.h │ ├── op50n.ld │ ├── op50nled.c │ ├── setjmp.S │ ├── test.c │ ├── w89k-io.c │ ├── w89k.h │ └── w89k.ld ├── print.c ├── putnum.c ├── read.c ├── rl78 │ ├── Makefile.in │ ├── abort.S │ ├── argv.S │ ├── argvlen.S │ ├── chdir.S │ ├── chmod.S │ ├── close.S │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── crtn.S │ ├── exit.S │ ├── fstat.S │ ├── gcrt0.S │ ├── getpid.S │ ├── gettimeofday.S │ ├── isatty.S │ ├── kill.S │ ├── link.S │ ├── lseek.S │ ├── mcount.c │ ├── open.S │ ├── read.S │ ├── rl78-sim.ld │ ├── rl78-sys.h │ ├── rl78.ld │ ├── sbrk.c │ ├── stat.S │ ├── time.S │ ├── times.S │ ├── unlink.S │ ├── utime.S │ └── write.c ├── rs6000 │ ├── Makefile.in │ ├── aclocal.m4 │ ├── ads-exit.S │ ├── ads-io.c │ ├── ads.ld │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── mbx-exit.c │ ├── mbx-inbyte.c │ ├── mbx-outbyte.c │ ├── mbx-print.c │ ├── mbx.ld │ ├── mbx.specs │ ├── mcount.S │ ├── mvme-errno.c │ ├── mvme-exit.S │ ├── mvme-inbyte.S │ ├── mvme-outbyte.S │ ├── mvme-print.c │ ├── mvme-read.c │ ├── sim-abort.c │ ├── sim-crt0.S │ ├── sim-errno.c │ ├── sim-getrusage.S │ ├── sim-inbyte.c │ ├── sim-print.c │ ├── sim-sbrk.c │ ├── sim-times.c │ ├── simulator.S │ ├── sol-cfuncs.c │ ├── sol-syscall.S │ ├── test.c │ ├── xil-crt0.S │ ├── xilinx.ld │ ├── xilinx440.ld │ └── yellowknife.ld ├── rx │ ├── Makefile.in │ ├── abort.S │ ├── argv.S │ ├── argvlen.S │ ├── chdir.S │ ├── chmod.S │ ├── close.S │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── crtn.S │ ├── exit.S │ ├── fstat.S │ ├── gcrt0.S │ ├── getpid.S │ ├── gettimeofday.S │ ├── heaptop.S │ ├── isatty.S │ ├── kill.S │ ├── link.S │ ├── lseek.S │ ├── mcount.c │ ├── open.S │ ├── read.S │ ├── rx-sim.ld │ ├── rx.ld │ ├── rxsys.h │ ├── sbrk.c │ ├── sigprocmask.S │ ├── sleep.S │ ├── stat.S │ ├── time.S │ ├── times.S │ ├── unlink.S │ ├── utime.S │ └── write.S ├── sbrk.c ├── sh │ ├── sh1lcevb.ld │ ├── sh2lcevb.ld │ ├── sh3bb.ld │ └── sh3lcevb.ld ├── sparc │ ├── Makefile.in │ ├── aclocal.m4 │ ├── asm.h │ ├── cache.c │ ├── configure │ ├── configure.in │ ├── crt0-701.S │ ├── crt0.S │ ├── cygmon-crt0.S │ ├── cygmon-salib.c │ ├── cygmon-sparc64-ld.src │ ├── cygmon.ld.src │ ├── dtor.C │ ├── elfsim.ld │ ├── erc32-crt0.S │ ├── erc32-io.c │ ├── erc32-stub.c │ ├── erc32.ld │ ├── ex930.ld │ ├── ex931.ld │ ├── ex934.ld │ ├── fixctors.c │ ├── libsys │ │ ├── Makefile.in │ │ ├── _exit.S │ │ ├── aclocal.m4 │ │ ├── cerror.S │ │ ├── configure │ │ ├── configure.in │ │ ├── isatty.c │ │ ├── libsys-crt0.S │ │ ├── sbrk.S │ │ ├── syscall.h │ │ ├── syscallasm.h │ │ ├── template.S │ │ └── template_r.S │ ├── salib-701.c │ ├── salib.c │ ├── slite.h │ ├── sparc-stub.c │ ├── sparc86x.ld │ ├── sparcl-stub.c │ ├── sparclet-stub.c │ ├── sparclite.h │ ├── sysc-701.c │ ├── syscalls.c │ ├── test.c │ ├── traps.S │ └── tsc701.ld ├── sparc_leon │ ├── Makefile.in │ ├── _exit.c │ ├── aclocal.m4 │ ├── amba.c │ ├── amba_dbg.c │ ├── amba_driver.c │ ├── amba_scan.c │ ├── asm-leon │ │ ├── amba.h │ │ ├── asmmacro.h │ │ ├── clock.h │ │ ├── contextswitch.h │ │ ├── elfmacro.h │ │ ├── head.h │ │ ├── irq.h │ │ ├── jiffies.h │ │ ├── lambapp.h │ │ ├── lambapp_devs.h │ │ ├── leon.h │ │ ├── leon3.h │ │ ├── leonbare_debug.h │ │ ├── leonbare_kernel.h │ │ ├── leonbare_kernel_queue.h │ │ ├── leoncompat.h │ │ ├── leondbg.h │ │ ├── leonstack.h │ │ ├── liblocks.h │ │ ├── linkage.h │ │ ├── param.h │ │ ├── queue.h │ │ ├── spinlock.h │ │ ├── stack.h │ │ ├── time.h │ │ ├── timer.h │ │ ├── types.h │ │ └── winmacros.h │ ├── bdinit.S │ ├── busscan.S │ ├── cacheA.S │ ├── catch_interrupt.c │ ├── catch_interrupt_mvt.c │ ├── catch_interrupt_pending.c │ ├── catch_interrupt_svt.c │ ├── configure │ ├── configure.in │ ├── console.c │ ├── console_dbg.c │ ├── console_init.c │ ├── contextswitch.c │ ├── contextswitch_asm.S │ ├── crt0.S │ ├── crti.S │ ├── crtn.S │ ├── etrap.S │ ├── etrap_fast.S │ ├── fpu.S │ ├── gettimeofday.c │ ├── initcalls.c │ ├── io.c │ ├── irqinstall.S │ ├── irqtrap.S │ ├── irqtrap_fast.S │ ├── jiffies.c │ ├── kernel.c │ ├── kernel_context.S │ ├── kernel_debug.c │ ├── kernel_debug_var.c │ ├── kernel_mm.c │ ├── kernel_mutex.c │ ├── kernel_queue.c │ ├── kernel_sched.c │ ├── kernel_thread.c │ ├── lcpuinit.S │ ├── locore.S │ ├── locore_atexit.c │ ├── locore_clean.S │ ├── locore_mvt.S │ ├── locore_mvt_reset.S │ ├── locore_svt.S │ ├── locore_svt_reset.S │ ├── locore_svtdisp.S │ ├── locore_var.S │ ├── locore_var_svt.S │ ├── mmu_asm.S │ ├── mutex.c │ ├── nocache.S │ ├── pnpinit.c │ ├── pnpinit_malloc.c │ ├── pnpinit_simple.c │ ├── regwin.S │ ├── regwin_patch.c │ ├── regwin_slow.S │ ├── regwinflush.S │ ├── rtc.c │ ├── rtrap.S │ ├── rtrap_fast.S │ ├── stop.S │ ├── timer.c │ └── times.c ├── spu │ ├── Makefile.in │ ├── access.c │ ├── aclocal.m4 │ ├── chdir.c │ ├── chmod.c │ ├── chown.c │ ├── close.c │ ├── configure │ ├── configure.in │ ├── conv_stat.c │ ├── crt0.S │ ├── crti.S │ ├── crtn.S │ ├── dirfuncs.c │ ├── dup.c │ ├── dup2.c │ ├── exit.c │ ├── fchdir.c │ ├── fchmod.c │ ├── fchown.c │ ├── fdatasync.c │ ├── fstat.c │ ├── fsync.c │ ├── ftruncate.c │ ├── getcwd.c │ ├── getitimer.c │ ├── getpagesize.c │ ├── getpid.c │ ├── gettimeofday.c │ ├── isatty.c │ ├── jsre.h │ ├── kill.c │ ├── lchown.c │ ├── link.c │ ├── linux_getpid.c │ ├── linux_gettid.c │ ├── linux_syscalls.c │ ├── lockf.c │ ├── lseek.c │ ├── lstat.c │ ├── mkdir.c │ ├── mknod.c │ ├── mkstemp.c │ ├── mktemp.c │ ├── mmap_eaddr.c │ ├── mremap_eaddr.c │ ├── msync_eaddr.c │ ├── munmap_eaddr.c │ ├── nanosleep.c │ ├── open.c │ ├── pread.c │ ├── pwrite.c │ ├── read.c │ ├── readlink.c │ ├── readv.c │ ├── rmdir.c │ ├── sbrk.c │ ├── sched_yield.c │ ├── setitimer.c │ ├── shm_open.c │ ├── shm_unlink.c │ ├── stat.c │ ├── symlink.c │ ├── sync.c │ ├── syscalls.c │ ├── times.c │ ├── truncate.c │ ├── umask.c │ ├── unlink.c │ ├── utime.c │ ├── utimes.c │ ├── write.c │ └── writev.c ├── stat.c ├── syscall.h ├── testsuite │ ├── Makefile.in │ ├── config │ │ ├── hppa.mt │ │ ├── m68k.mt │ │ ├── mips.mt │ │ └── support.c │ ├── configure.in │ ├── lib │ │ └── libgloss.exp │ └── libgloss.all │ │ ├── Makefile.in │ │ ├── array.c │ │ ├── configure.in │ │ ├── div.c │ │ ├── double.c │ │ ├── float.c │ │ ├── func.c │ │ ├── io.c │ │ ├── math.c │ │ ├── memory.c │ │ ├── misc.c │ │ ├── printf.c │ │ ├── struct.c │ │ ├── varargs.c │ │ └── varargs2.c ├── tic6x │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── crt0.S │ ├── getpid.c │ ├── kill.c │ ├── sbrk.c │ └── syscalls.c ├── unlink.c ├── v850 │ ├── Makefile.in │ ├── _exit.c │ ├── access.c │ ├── aclocal.m4 │ ├── chmod.c │ ├── chown.c │ ├── close.c │ ├── configure │ ├── configure.in │ ├── creat.c │ ├── crt0.S │ ├── crt1.c │ ├── execv.c │ ├── execve.c │ ├── fork.c │ ├── fstat.c │ ├── getpid.c │ ├── gettime.c │ ├── isatty.c │ ├── kill.c │ ├── link.c │ ├── lseek.c │ ├── open.c │ ├── pipe.c │ ├── read.c │ ├── sbrk.c │ ├── sim.ld │ ├── stat.c │ ├── sys │ │ └── syscall.h │ ├── time.c │ ├── times.c │ ├── trap.S │ ├── unlink.c │ ├── utime.c │ ├── wait.c │ └── write.c ├── wince │ ├── Makefile.am │ ├── Makefile.in │ ├── aclocal.m4 │ ├── configure │ └── configure.in ├── write.c ├── xc16x │ ├── Makefile.in │ ├── aclocal.m4 │ ├── close.S │ ├── configure │ ├── configure.in │ ├── create.c │ ├── crt0.S │ ├── fstat.S │ ├── getchar1.c │ ├── isatty.c │ ├── lseek.c │ ├── mem-layout.c │ ├── misc.c │ ├── open.c │ ├── read.c │ ├── sbrk.c │ ├── sys │ │ └── syscall.h │ ├── syscalls.c │ ├── trap_handle.c │ └── write.c └── xstormy16 │ ├── Makefile.in │ ├── aclocal.m4 │ ├── close.c │ ├── configure │ ├── configure.in │ ├── crt0.s │ ├── crt0_stub.s │ ├── crti.s │ ├── crtn.s │ ├── eva_app.c │ ├── eva_app.ld │ ├── eva_stub.ld │ ├── fstat.c │ ├── getpid.c │ ├── isatty.c │ ├── kill.c │ ├── lseek.c │ ├── open.c │ ├── sim_high.ld │ ├── sim_malloc_start.s │ ├── sim_rom.ld │ ├── stat.c │ ├── syscalls.S │ ├── syscalls.m4 │ ├── unlink.c │ └── xstormy16_stub.c ├── libtool.m4 ├── ltgcc.m4 ├── ltmain.sh ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 ├── makefile.vms ├── missing ├── mkdep ├── mkinstalldirs ├── move-if-change ├── newlib ├── ChangeLog ├── ChangeLog.nano ├── HOWTO ├── MAINTAINERS ├── Makefile.am ├── Makefile.in ├── Makefile.shared ├── NEWS ├── README ├── README.nano ├── acconfig.h ├── acinclude.m4 ├── aclocal.m4 ├── configure ├── configure.host ├── configure.in ├── confsubdir.m4 ├── doc │ ├── Makefile.am │ ├── Makefile.in │ ├── aclocal.m4 │ ├── ansidecl.h │ ├── configure │ ├── configure.in │ ├── doc.str │ └── makedoc.c ├── iconvdata │ ├── EUC-JP.irreversible │ ├── Makefile.am │ ├── Makefile.in │ ├── SJIS.irreversible │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── dummy.c │ ├── euc-jp.c │ ├── gconv-modules │ ├── jis0201.c │ ├── jis0201.h │ ├── jis0208.c │ ├── jis0208.h │ ├── jis0212.c │ ├── jis0212.h │ └── sjis.c ├── libc │ ├── Makefile.am │ ├── Makefile.in │ ├── aclocal.m4 │ ├── argz │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── argz_add.c │ │ ├── argz_add_sep.c │ │ ├── argz_append.c │ │ ├── argz_count.c │ │ ├── argz_create.c │ │ ├── argz_create_sep.c │ │ ├── argz_delete.c │ │ ├── argz_extract.c │ │ ├── argz_insert.c │ │ ├── argz_next.c │ │ ├── argz_replace.c │ │ ├── argz_stringify.c │ │ ├── buf_findstr.c │ │ ├── buf_findstr.h │ │ ├── dummy.c │ │ ├── envz_add.c │ │ ├── envz_entry.c │ │ ├── envz_get.c │ │ ├── envz_merge.c │ │ ├── envz_remove.c │ │ └── envz_strip.c │ ├── configure │ ├── configure.in │ ├── ctype │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ctype.tex │ │ ├── ctype_.c │ │ ├── ctype_cp.h │ │ ├── ctype_iso.h │ │ ├── isalnum.c │ │ ├── isalpha.c │ │ ├── isascii.c │ │ ├── isblank.c │ │ ├── iscntrl.c │ │ ├── isdigit.c │ │ ├── islower.c │ │ ├── isprint.c │ │ ├── ispunct.c │ │ ├── isspace.c │ │ ├── isupper.c │ │ ├── iswalnum.c │ │ ├── iswalpha.c │ │ ├── iswblank.c │ │ ├── iswcntrl.c │ │ ├── iswctype.c │ │ ├── iswdigit.c │ │ ├── iswgraph.c │ │ ├── iswlower.c │ │ ├── iswprint.c │ │ ├── iswpunct.c │ │ ├── iswspace.c │ │ ├── iswupper.c │ │ ├── iswxdigit.c │ │ ├── isxdigit.c │ │ ├── jp2uc.c │ │ ├── jp2uc.h │ │ ├── local.h │ │ ├── toascii.c │ │ ├── tolower.c │ │ ├── toupper.c │ │ ├── towctrans.c │ │ ├── towlower.c │ │ ├── towupper.c │ │ ├── utf8alpha.h │ │ ├── utf8print.h │ │ ├── wctrans.c │ │ └── wctype.c │ ├── errno │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── errno.c │ ├── iconv │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ccs │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── big5.c │ │ │ ├── binary │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── big5.cct │ │ │ │ ├── cns11643_plane1.cct │ │ │ │ ├── cns11643_plane14.cct │ │ │ │ ├── cns11643_plane2.cct │ │ │ │ ├── cp775.cct │ │ │ │ ├── cp850.cct │ │ │ │ ├── cp852.cct │ │ │ │ ├── cp855.cct │ │ │ │ ├── cp866.cct │ │ │ │ ├── iso_8859_1.cct │ │ │ │ ├── iso_8859_10.cct │ │ │ │ ├── iso_8859_11.cct │ │ │ │ ├── iso_8859_13.cct │ │ │ │ ├── iso_8859_14.cct │ │ │ │ ├── iso_8859_15.cct │ │ │ │ ├── iso_8859_2.cct │ │ │ │ ├── iso_8859_3.cct │ │ │ │ ├── iso_8859_4.cct │ │ │ │ ├── iso_8859_5.cct │ │ │ │ ├── iso_8859_6.cct │ │ │ │ ├── iso_8859_7.cct │ │ │ │ ├── iso_8859_8.cct │ │ │ │ ├── iso_8859_9.cct │ │ │ │ ├── iso_ir_111.cct │ │ │ │ ├── jis_x0201_1976.cct │ │ │ │ ├── jis_x0208_1990.cct │ │ │ │ ├── jis_x0212_1990.cct │ │ │ │ ├── koi8_r.cct │ │ │ │ ├── koi8_ru.cct │ │ │ │ ├── koi8_u.cct │ │ │ │ ├── koi8_uni.cct │ │ │ │ ├── ksx1001.cct │ │ │ │ ├── win_1250.cct │ │ │ │ ├── win_1251.cct │ │ │ │ ├── win_1252.cct │ │ │ │ ├── win_1253.cct │ │ │ │ ├── win_1254.cct │ │ │ │ ├── win_1255.cct │ │ │ │ ├── win_1256.cct │ │ │ │ ├── win_1257.cct │ │ │ │ └── win_1258.cct │ │ │ ├── ccs.h │ │ │ ├── ccsbi.c │ │ │ ├── ccsbi.h │ │ │ ├── ccsnames.h │ │ │ ├── cns11643_plane1.c │ │ │ ├── cns11643_plane14.c │ │ │ ├── cns11643_plane2.c │ │ │ ├── cp775.c │ │ │ ├── cp850.c │ │ │ ├── cp852.c │ │ │ ├── cp855.c │ │ │ ├── cp866.c │ │ │ ├── iso_8859_1.c │ │ │ ├── iso_8859_10.c │ │ │ ├── iso_8859_11.c │ │ │ ├── iso_8859_13.c │ │ │ ├── iso_8859_14.c │ │ │ ├── iso_8859_15.c │ │ │ ├── iso_8859_2.c │ │ │ ├── iso_8859_3.c │ │ │ ├── iso_8859_4.c │ │ │ ├── iso_8859_5.c │ │ │ ├── iso_8859_6.c │ │ │ ├── iso_8859_7.c │ │ │ ├── iso_8859_8.c │ │ │ ├── iso_8859_9.c │ │ │ ├── iso_ir_111.c │ │ │ ├── jis_x0201_1976.c │ │ │ ├── jis_x0208_1990.c │ │ │ ├── jis_x0212_1990.c │ │ │ ├── koi8_r.c │ │ │ ├── koi8_ru.c │ │ │ ├── koi8_u.c │ │ │ ├── koi8_uni.c │ │ │ ├── ksx1001.c │ │ │ ├── mktbl.pl │ │ │ ├── win_1250.c │ │ │ ├── win_1251.c │ │ │ ├── win_1252.c │ │ │ ├── win_1253.c │ │ │ ├── win_1254.c │ │ │ ├── win_1255.c │ │ │ ├── win_1256.c │ │ │ ├── win_1257.c │ │ │ └── win_1258.c │ │ ├── ces │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cesbi.c │ │ │ ├── cesbi.h │ │ │ ├── cesdeps.h │ │ │ ├── euc.c │ │ │ ├── mkdeps.pl │ │ │ ├── table-pcs.c │ │ │ ├── table.c │ │ │ ├── ucs-2-internal.c │ │ │ ├── ucs-2.c │ │ │ ├── ucs-4-internal.c │ │ │ ├── ucs-4.c │ │ │ ├── us-ascii.c │ │ │ ├── utf-16.c │ │ │ └── utf-8.c │ │ ├── encoding.aliases │ │ ├── iconv.tex │ │ └── lib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aliasesbi.c │ │ │ ├── aliasesi.c │ │ │ ├── conv.h │ │ │ ├── encnames.h │ │ │ ├── encoding.deps │ │ │ ├── endian.h │ │ │ ├── iconv.c │ │ │ ├── iconvnls.c │ │ │ ├── iconvnls.h │ │ │ ├── local.h │ │ │ ├── nullconv.c │ │ │ ├── ucsconv.c │ │ │ └── ucsconv.h │ ├── include │ │ ├── _ansi.h │ │ ├── _syslist.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── argz.h │ │ ├── assert.h │ │ ├── complex.h │ │ ├── ctype.h │ │ ├── dirent.h │ │ ├── envlock.h │ │ ├── envz.h │ │ ├── errno.h │ │ ├── fastmath.h │ │ ├── fcntl.h │ │ ├── fnmatch.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── iconv.h │ │ ├── ieeefp.h │ │ ├── inttypes.h │ │ ├── langinfo.h │ │ ├── libgen.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── machine │ │ │ ├── _default_types.h │ │ │ ├── _types.h │ │ │ ├── ansi.h │ │ │ ├── endian.h │ │ │ ├── fastmath.h │ │ │ ├── ieeefp.h │ │ │ ├── malloc.h │ │ │ ├── param.h │ │ │ ├── setjmp-dj.h │ │ │ ├── setjmp.h │ │ │ ├── stdlib.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ └── types.h │ │ ├── malloc.h │ │ ├── math.h │ │ ├── newlib.h │ │ ├── paths.h │ │ ├── pthread.h │ │ ├── pwd.h │ │ ├── reent.h │ │ ├── regdef.h │ │ ├── regex.h │ │ ├── rpc │ │ │ ├── types.h │ │ │ └── xdr.h │ │ ├── sched.h │ │ ├── search.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── spawn.h │ │ ├── stdatomic.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdio_ext.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── _default_fcntl.h │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── custom_file.h │ │ │ ├── dir.h │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── features.h │ │ │ ├── file.h │ │ │ ├── iconvnls.h │ │ │ ├── lock.h │ │ │ ├── param.h │ │ │ ├── queue.h │ │ │ ├── reent.h │ │ │ ├── resource.h │ │ │ ├── sched.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdio.h │ │ │ ├── string.h │ │ │ ├── syslimits.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── types.h │ │ │ ├── unistd.h │ │ │ ├── utime.h │ │ │ └── wait.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── time.h │ │ ├── unctrl.h │ │ ├── unistd.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ └── wordexp.h │ ├── libc.texinfo │ ├── locale │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── fix_grouping.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldpart.c │ │ ├── ldpart.h │ │ ├── lmessages.c │ │ ├── lmessages.h │ │ ├── lmonetary.c │ │ ├── lmonetary.h │ │ ├── lnumeric.c │ │ ├── lnumeric.h │ │ ├── locale.c │ │ ├── locale.tex │ │ ├── nl_langinfo.3 │ │ ├── nl_langinfo.c │ │ ├── setlocale.h │ │ ├── timelocal.c │ │ └── timelocal.h │ ├── machine │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── a29k │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ └── configure.in │ │ ├── aarch64 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── machine │ │ │ │ └── _types.h │ │ │ ├── memcmp-stub.c │ │ │ ├── memcmp.S │ │ │ ├── memcpy-stub.c │ │ │ ├── memcpy.S │ │ │ ├── memmove-stub.c │ │ │ ├── memmove.S │ │ │ ├── memset-stub.c │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ ├── strcmp-stub.c │ │ │ ├── strcmp.S │ │ │ ├── strlen-stub.c │ │ │ ├── strlen.S │ │ │ ├── strncmp-stub.c │ │ │ ├── strncmp.S │ │ │ ├── strnlen-stub.c │ │ │ └── strnlen.S │ │ ├── aclocal.m4 │ │ ├── arm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── access.c │ │ │ ├── aclocal.m4 │ │ │ ├── arm_asm.h │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── machine │ │ │ │ └── param.h │ │ │ ├── memchr-stub.c │ │ │ ├── memchr.S │ │ │ ├── memcpy-armv7a.S │ │ │ ├── memcpy-armv7m.S │ │ │ ├── memcpy-stub.c │ │ │ ├── memcpy.S │ │ │ ├── setjmp.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.c │ │ │ ├── strlen-armv7.S │ │ │ └── strlen.c │ │ ├── bfin │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── longjmp.S │ │ │ └── setjmp.S │ │ ├── configure │ │ ├── configure.in │ │ ├── cr16 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── getenv.c │ │ │ ├── setjmp.S │ │ │ └── sys │ │ │ │ ├── asm.h │ │ │ │ ├── libh.h │ │ │ │ └── syscall.h │ │ ├── cris │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── include │ │ │ │ └── pthread.h │ │ │ ├── libcdtor.c │ │ │ ├── memcpy.c │ │ │ ├── memmove.c │ │ │ ├── memset.c │ │ │ ├── setjmp.c │ │ │ └── sys │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ └── signal.h │ │ ├── crx │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── getenv.c │ │ │ ├── setjmp.S │ │ │ └── sys │ │ │ │ ├── asm.h │ │ │ │ ├── libh.h │ │ │ │ └── syscall.h │ │ ├── d10v │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── d30v │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── epiphany │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── machine │ │ │ │ └── stdlib.h │ │ │ └── setjmp.S │ │ ├── fr30 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── frv │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── h8300 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── defines.h │ │ │ ├── h8sx_strcpy.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── reg_memcpy.S │ │ │ ├── reg_memset.S │ │ │ ├── setarch.h │ │ │ ├── setjmp.S │ │ │ └── strcmp.S │ │ ├── h8500 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── cmpsi.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── divhi3.S │ │ │ ├── divsi3.c │ │ │ ├── mulhi3.c │ │ │ ├── mulsi3.c │ │ │ ├── negsi2.c │ │ │ ├── psi.S │ │ │ ├── setjmp.S │ │ │ └── shifts.c │ │ ├── hppa │ │ │ ├── DEFS.h │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── pcc_prefix.s │ │ │ ├── setjmp.S │ │ │ ├── strcat.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ ├── strlen.S │ │ │ ├── strncat.S │ │ │ ├── strncmp.S │ │ │ └── strncpy.S │ │ ├── i386 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── f_atan2.S │ │ │ ├── f_atan2f.S │ │ │ ├── f_exp.c │ │ │ ├── f_expf.c │ │ │ ├── f_frexp.S │ │ │ ├── f_frexpf.S │ │ │ ├── f_ldexp.S │ │ │ ├── f_ldexpf.S │ │ │ ├── f_log.S │ │ │ ├── f_log10.S │ │ │ ├── f_log10f.S │ │ │ ├── f_logf.S │ │ │ ├── f_math.h │ │ │ ├── f_pow.c │ │ │ ├── f_powf.c │ │ │ ├── f_tan.S │ │ │ ├── f_tanf.S │ │ │ ├── i386mach.h │ │ │ ├── machine │ │ │ │ └── fastmath.h │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ ├── strchr.S │ │ │ └── strlen.S │ │ ├── i960 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── memccpy.S │ │ │ ├── memccpy_ca.S │ │ │ ├── memchr.S │ │ │ ├── memchr_ca.S │ │ │ ├── memcmp.S │ │ │ ├── memcmp_ca.S │ │ │ ├── memcpy.S │ │ │ ├── memcpy_ca.S │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ ├── strchr.S │ │ │ ├── strchr_ca.S │ │ │ ├── strcmp.S │ │ │ ├── strcmp_ca.S │ │ │ ├── strcpy.S │ │ │ ├── strcpy_ca.S │ │ │ ├── strcspn.S │ │ │ ├── strdup.S │ │ │ ├── strlen.S │ │ │ ├── strlen_ca.S │ │ │ ├── strncat.S │ │ │ ├── strncat_ca.S │ │ │ ├── strncmp.S │ │ │ ├── strncmp_ca.S │ │ │ ├── strncpy.S │ │ │ ├── strncpy_ca.S │ │ │ ├── strpbrk.S │ │ │ └── strrchr.S │ │ ├── iq2000 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── lm32 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── m32c │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── m32r │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── m68hc11 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── m68k │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── m68kasm.h │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ ├── strcpy.c │ │ │ └── strlen.c │ │ ├── m88k │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── mep │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── microblaze │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── abort.c │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── longjmp.S │ │ │ ├── mb_endian.h │ │ │ ├── setjmp.S │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ └── strlen.c │ │ ├── mips │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── machine │ │ │ │ ├── asm.h │ │ │ │ └── regdef.h │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ ├── strcmp.c │ │ │ ├── strlen.c │ │ │ └── strncpy.c │ │ ├── mn10200 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── mn10300 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ ├── strchr.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ └── strlen.S │ │ ├── moxie │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── msp430 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── mt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── nds32 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── abort.c │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ ├── strcmp.S │ │ │ └── strcpy.S │ │ ├── necv70 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── fastmath.S │ │ │ ├── machine │ │ │ │ └── registers.h │ │ │ ├── necv70.tex │ │ │ └── setjmp.S │ │ ├── nios2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.s │ │ ├── powerpc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── atosfix16.c │ │ │ ├── atosfix32.c │ │ │ ├── atosfix64.c │ │ │ ├── atoufix16.c │ │ │ ├── atoufix32.c │ │ │ ├── atoufix64.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── fix64.h │ │ │ ├── machine │ │ │ │ ├── malloc.h │ │ │ │ └── stdlib.h │ │ │ ├── setjmp.S │ │ │ ├── simdldtoa.c │ │ │ ├── strtosfix16.c │ │ │ ├── strtosfix32.c │ │ │ ├── strtosfix64.c │ │ │ ├── strtoufix16.c │ │ │ ├── strtoufix32.c │ │ │ ├── strtoufix64.c │ │ │ ├── ufix64toa.c │ │ │ ├── vec_calloc.c │ │ │ ├── vec_free.c │ │ │ ├── vec_malloc.c │ │ │ ├── vec_mallocr.c │ │ │ ├── vec_realloc.c │ │ │ ├── vfprintf.c │ │ │ └── vfscanf.c │ │ ├── rl78 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── rx │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── memchr.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── mempcpy.S │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ ├── strcat.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ ├── strlen.S │ │ │ ├── strncat.S │ │ │ ├── strncmp.S │ │ │ └── strncpy.S │ │ ├── sh │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── asm.h │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ ├── strlen.S │ │ │ └── strncpy.S │ │ ├── sparc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── machine │ │ │ │ └── sparclet.h │ │ │ ├── scan.c │ │ │ ├── setjmp.S │ │ │ └── shuffle.c │ │ ├── spu │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── assert.c │ │ │ ├── c99ppe.h │ │ │ ├── calloc_ea.c │ │ │ ├── clearerr.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── creat.c │ │ │ ├── ea_internal.h │ │ │ ├── fclose.c │ │ │ ├── fdopen.c │ │ │ ├── feof.c │ │ │ ├── ferror.c │ │ │ ├── fflush.c │ │ │ ├── fgetc.c │ │ │ ├── fgetpos.c │ │ │ ├── fgets.c │ │ │ ├── fileno.c │ │ │ ├── fiprintf.S │ │ │ ├── fiscanf.S │ │ │ ├── fopen.c │ │ │ ├── fprintf.S │ │ │ ├── fputc.c │ │ │ ├── fputs.c │ │ │ ├── fread.c │ │ │ ├── free_ea.c │ │ │ ├── freopen.c │ │ │ ├── fscanf.S │ │ │ ├── fseek.c │ │ │ ├── fsetpos.c │ │ │ ├── ftell.c │ │ │ ├── fwrite.c │ │ │ ├── getc.c │ │ │ ├── getchar.c │ │ │ ├── gets.c │ │ │ ├── impure.c │ │ │ ├── include │ │ │ │ ├── ea.h │ │ │ │ ├── fenv.h │ │ │ │ └── spu_timer.h │ │ │ ├── iprintf.S │ │ │ ├── iscanf.S │ │ │ ├── machine │ │ │ │ └── _types.h │ │ │ ├── malloc_ea.c │ │ │ ├── memchr_ea.c │ │ │ ├── memcmp.c │ │ │ ├── memcmp_ea.c │ │ │ ├── memcpy.c │ │ │ ├── memcpy_ea.c │ │ │ ├── memmove.c │ │ │ ├── memmove_ea.c │ │ │ ├── memset.c │ │ │ ├── memset_ea.c │ │ │ ├── mk_syscalls │ │ │ ├── mmap_ea.c │ │ │ ├── mremap_ea.c │ │ │ ├── msync_ea.c │ │ │ ├── munmap_ea.c │ │ │ ├── perror.c │ │ │ ├── posix_memalign_ea.c │ │ │ ├── pread_ea.c │ │ │ ├── printf.S │ │ │ ├── putc.c │ │ │ ├── putchar.c │ │ │ ├── puts.c │ │ │ ├── pwrite_ea.c │ │ │ ├── read_ea.c │ │ │ ├── readv_ea.c │ │ │ ├── realloc_ea.c │ │ │ ├── remove.c │ │ │ ├── rename.c │ │ │ ├── rewind.c │ │ │ ├── scanf.S │ │ │ ├── setbuf.c │ │ │ ├── setjmp.S │ │ │ ├── setvbuf.c │ │ │ ├── siprintf.S │ │ │ ├── siscanf.S │ │ │ ├── sleep.c │ │ │ ├── sniprintf.S │ │ │ ├── snprintf.S │ │ │ ├── sprintf.S │ │ │ ├── spu-gmon.c │ │ │ ├── spu-mcount.S │ │ │ ├── spu_clock_stop.c │ │ │ ├── spu_clock_svcs.c │ │ │ ├── spu_timebase.c │ │ │ ├── spu_timer_flih.S │ │ │ ├── spu_timer_free.c │ │ │ ├── spu_timer_internal.h │ │ │ ├── spu_timer_slih.c │ │ │ ├── spu_timer_slih_reg.c │ │ │ ├── spu_timer_stop.c │ │ │ ├── spu_timer_svcs.c │ │ │ ├── sscanf.S │ │ │ ├── stack_reg_va.S │ │ │ ├── stdio.c │ │ │ ├── straddr.h │ │ │ ├── strcat.c │ │ │ ├── strcat_ea.c │ │ │ ├── strchr.c │ │ │ ├── strchr_ea.c │ │ │ ├── strcmp.c │ │ │ ├── strcmp_ea.c │ │ │ ├── strcpy.c │ │ │ ├── strcpy.h │ │ │ ├── strcpy_ea.c │ │ │ ├── strcspn.c │ │ │ ├── strcspn_ea.c │ │ │ ├── strlen.c │ │ │ ├── strlen_ea.c │ │ │ ├── strncat.c │ │ │ ├── strncat_ea.c │ │ │ ├── strncmp.c │ │ │ ├── strncmp.h │ │ │ ├── strncmp_ea.c │ │ │ ├── strncpy.c │ │ │ ├── strncpy_ea.c │ │ │ ├── strpbrk.c │ │ │ ├── strpbrk_ea.c │ │ │ ├── strrchr.c │ │ │ ├── strrchr_ea.c │ │ │ ├── strspn.c │ │ │ ├── strspn_ea.c │ │ │ ├── strstr_ea.c │ │ │ ├── strxfrm.c │ │ │ ├── sys │ │ │ │ ├── custom_file.h │ │ │ │ ├── dirent.h │ │ │ │ ├── errno.h │ │ │ │ ├── fenv.h │ │ │ │ ├── linux_syscalls.h │ │ │ │ ├── mman.h │ │ │ │ ├── sched.h │ │ │ │ ├── syscall.h │ │ │ │ ├── uio.h │ │ │ │ └── utime.h │ │ │ ├── syscall.def │ │ │ ├── tmpfile.c │ │ │ ├── tmpnam.c │ │ │ ├── ungetc.c │ │ │ ├── usleep.c │ │ │ ├── vec_literal.h │ │ │ ├── vfiprintf.c │ │ │ ├── vfiscanf.c │ │ │ ├── vfprintf.c │ │ │ ├── vfscanf.c │ │ │ ├── viprintf.c │ │ │ ├── viscanf.c │ │ │ ├── vprintf.c │ │ │ ├── vscanf.c │ │ │ ├── vsiprintf.c │ │ │ ├── vsiscanf.c │ │ │ ├── vsniprintf.c │ │ │ ├── vsnprintf.c │ │ │ ├── vsprintf.c │ │ │ ├── vsscanf.c │ │ │ ├── write_ea.c │ │ │ └── writev_ea.c │ │ ├── tic4x │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── tic6x │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── tic80 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── v850 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── setjmp.S │ │ ├── w65 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── cmpsi.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── divsi3.c │ │ │ ├── lshrhi.S │ │ │ ├── mulsi3.c │ │ │ ├── sdivhi3.S │ │ │ ├── smulhi3.S │ │ │ ├── udivhi3.S │ │ │ └── umodhi3.S │ │ ├── x86_64 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ └── x86_64mach.h │ │ ├── xc16x │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── putchar.c │ │ │ ├── puts.c │ │ │ └── setjmp.S │ │ ├── xscale │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── machine │ │ │ │ └── profile.h │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memcpy.c │ │ │ ├── memmove.c │ │ │ ├── memset.c │ │ │ ├── setjmp.S │ │ │ ├── strchr.c │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ ├── strlen.c │ │ │ └── xscale.h │ │ ├── xstormy16 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── mallocr.c │ │ │ ├── setjmp.S │ │ │ └── tiny-malloc.c │ │ └── z8k │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── args.h │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ └── setjmp.S │ ├── misc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── __dprintf.c │ │ ├── ffs.c │ │ ├── fini.c │ │ ├── init.c │ │ ├── misc.tex │ │ └── unctrl.c │ ├── posix │ │ ├── COPYRIGHT │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── _isatty.c │ │ ├── cclass.h │ │ ├── closedir.c │ │ ├── cname.h │ │ ├── collate.c │ │ ├── collate.h │ │ ├── collcmp.c │ │ ├── creat.c │ │ ├── engine.c │ │ ├── execl.c │ │ ├── execle.c │ │ ├── execlp.c │ │ ├── execv.c │ │ ├── execve.c │ │ ├── execvp.c │ │ ├── fnmatch.3 │ │ ├── fnmatch.c │ │ ├── glob.3 │ │ ├── glob.c │ │ ├── isatty.c │ │ ├── namespace.h │ │ ├── opendir.c │ │ ├── popen.c │ │ ├── posix.tex │ │ ├── posix_spawn.c │ │ ├── readdir.c │ │ ├── readdir_r.c │ │ ├── regcomp.c │ │ ├── regerror.c │ │ ├── regex.3 │ │ ├── regex2.h │ │ ├── regexec.c │ │ ├── regfree.c │ │ ├── rewinddir.c │ │ ├── rune.h │ │ ├── runetype.h │ │ ├── scandir.c │ │ ├── seekdir.c │ │ ├── sleep.c │ │ ├── sysexits.h │ │ ├── telldir.c │ │ ├── un-namespace.h │ │ ├── usleep.c │ │ ├── utils.h │ │ ├── wordexp.c │ │ ├── wordexp2.h │ │ └── wordfree.c │ ├── reent │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── closer.c │ │ ├── execr.c │ │ ├── fcntlr.c │ │ ├── fstat64r.c │ │ ├── fstatr.c │ │ ├── getreent.c │ │ ├── gettimeofdayr.c │ │ ├── impure.c │ │ ├── isattyr.c │ │ ├── linkr.c │ │ ├── lseek64r.c │ │ ├── lseekr.c │ │ ├── mkdirr.c │ │ ├── open64r.c │ │ ├── openr.c │ │ ├── readr.c │ │ ├── reent.c │ │ ├── reent.tex │ │ ├── renamer.c │ │ ├── sbrkr.c │ │ ├── signalr.c │ │ ├── signgam.c │ │ ├── stat64r.c │ │ ├── statr.c │ │ ├── timesr.c │ │ ├── unlinkr.c │ │ └── writer.c │ ├── saber │ ├── search │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bsearch.c │ │ ├── db_local.h │ │ ├── extern.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hash_bigkey.c │ │ ├── hash_buf.c │ │ ├── hash_func.c │ │ ├── hash_log2.c │ │ ├── hash_page.c │ │ ├── hcreate.3 │ │ ├── hcreate.c │ │ ├── hcreate_r.c │ │ ├── page.h │ │ ├── qsort.c │ │ ├── tdelete.c │ │ ├── tdestroy.c │ │ ├── tfind.c │ │ ├── tsearch.3 │ │ ├── tsearch.c │ │ └── twalk.c │ ├── signal │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── psignal.c │ │ ├── raise.c │ │ ├── signal.c │ │ └── signal.tex │ ├── stdio │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── asiprintf.c │ │ ├── asniprintf.c │ │ ├── asnprintf.c │ │ ├── asprintf.c │ │ ├── clearerr.c │ │ ├── diprintf.c │ │ ├── dprintf.c │ │ ├── fclose.c │ │ ├── fcloseall.c │ │ ├── fdopen.c │ │ ├── feof.c │ │ ├── ferror.c │ │ ├── fflush.c │ │ ├── fgetc.c │ │ ├── fgetpos.c │ │ ├── fgets.c │ │ ├── fgetwc.c │ │ ├── fgetws.c │ │ ├── fileno.c │ │ ├── findfp.c │ │ ├── fiprintf.c │ │ ├── fiscanf.c │ │ ├── flags.c │ │ ├── floatio.h │ │ ├── fmemopen.c │ │ ├── fopen.c │ │ ├── fopencookie.c │ │ ├── fprintf.c │ │ ├── fpurge.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fputwc.c │ │ ├── fputws.c │ │ ├── fread.c │ │ ├── freopen.c │ │ ├── fscanf.c │ │ ├── fseek.c │ │ ├── fseeko.c │ │ ├── fsetpos.c │ │ ├── ftell.c │ │ ├── ftello.c │ │ ├── funopen.c │ │ ├── fvwrite.c │ │ ├── fvwrite.h │ │ ├── fwalk.c │ │ ├── fwide.c │ │ ├── fwprintf.c │ │ ├── fwrite.c │ │ ├── fwscanf.c │ │ ├── getc.c │ │ ├── getc_u.c │ │ ├── getchar.c │ │ ├── getchar_u.c │ │ ├── getdelim.c │ │ ├── getline.c │ │ ├── gets.c │ │ ├── getw.c │ │ ├── getwc.c │ │ ├── getwchar.c │ │ ├── iprintf.c │ │ ├── iscanf.c │ │ ├── local.h │ │ ├── makebuf.c │ │ ├── mktemp.c │ │ ├── open_memstream.c │ │ ├── perror.c │ │ ├── printf.c │ │ ├── putc.c │ │ ├── putc_u.c │ │ ├── putchar.c │ │ ├── putchar_u.c │ │ ├── puts.c │ │ ├── putw.c │ │ ├── putwc.c │ │ ├── putwchar.c │ │ ├── refill.c │ │ ├── remove.c │ │ ├── rename.c │ │ ├── rewind.c │ │ ├── rget.c │ │ ├── scanf.c │ │ ├── sccl.c │ │ ├── setbuf.c │ │ ├── setbuffer.c │ │ ├── setlinebuf.c │ │ ├── setvbuf.c │ │ ├── siprintf.c │ │ ├── siscanf.c │ │ ├── sniprintf.c │ │ ├── snprintf.c │ │ ├── sprintf.c │ │ ├── sscanf.c │ │ ├── stdio.c │ │ ├── stdio.tex │ │ ├── swprintf.c │ │ ├── swscanf.c │ │ ├── tmpfile.c │ │ ├── tmpnam.c │ │ ├── ungetc.c │ │ ├── ungetwc.c │ │ ├── vasiprintf.c │ │ ├── vasniprintf.c │ │ ├── vasnprintf.c │ │ ├── vasprintf.c │ │ ├── vdiprintf.c │ │ ├── vdprintf.c │ │ ├── vfieeefp.h │ │ ├── vfprintf.c │ │ ├── vfprintf_float.c │ │ ├── vfprintf_i.c │ │ ├── vfprintf_local.h │ │ ├── vfscanf.c │ │ ├── vfscanf_float.c │ │ ├── vfscanf_i.c │ │ ├── vfscanf_local.h │ │ ├── vfwprintf.c │ │ ├── vfwscanf.c │ │ ├── viprintf.c │ │ ├── viscanf.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── vsiprintf.c │ │ ├── vsiscanf.c │ │ ├── vsniprintf.c │ │ ├── vsnprintf.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── vswprintf.c │ │ ├── vswscanf.c │ │ ├── vwprintf.c │ │ ├── vwscanf.c │ │ ├── wbuf.c │ │ ├── wprintf.c │ │ ├── wscanf.c │ │ └── wsetup.c │ ├── stdio64 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dummy.c │ │ ├── fdopen64.c │ │ ├── fgetpos64.c │ │ ├── fopen64.c │ │ ├── freopen64.c │ │ ├── fseeko64.c │ │ ├── fsetpos64.c │ │ ├── ftello64.c │ │ ├── stdio64.c │ │ ├── stdio64.tex │ │ └── tmpfile64.c │ ├── stdlib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── _Exit.c │ │ ├── __adjust.c │ │ ├── __atexit.c │ │ ├── __call_atexit.c │ │ ├── __exp10.c │ │ ├── __ten_mu.c │ │ ├── a64l.c │ │ ├── abort.c │ │ ├── abs.c │ │ ├── assert.c │ │ ├── atexit.c │ │ ├── atexit.h │ │ ├── atof.c │ │ ├── atoff.c │ │ ├── atoi.c │ │ ├── atol.c │ │ ├── atoll.c │ │ ├── btowc.c │ │ ├── calloc.c │ │ ├── cxa_atexit.c │ │ ├── cxa_finalize.c │ │ ├── div.c │ │ ├── drand48.c │ │ ├── dtoa.c │ │ ├── dtoastub.c │ │ ├── ecvtbuf.c │ │ ├── efgcvt.c │ │ ├── environ.c │ │ ├── envlock.c │ │ ├── eprintf.c │ │ ├── erand48.c │ │ ├── exit.c │ │ ├── gd_qnan.h │ │ ├── gdtoa-gethex.c │ │ ├── gdtoa-hexnan.c │ │ ├── gdtoa.h │ │ ├── getenv.c │ │ ├── getenv_r.c │ │ ├── getopt.c │ │ ├── getsubopt.3 │ │ ├── getsubopt.c │ │ ├── jrand48.c │ │ ├── l64a.c │ │ ├── labs.c │ │ ├── lcong48.c │ │ ├── ldiv.c │ │ ├── ldtoa.c │ │ ├── llabs.c │ │ ├── lldiv.c │ │ ├── local.h │ │ ├── lrand48.c │ │ ├── malign.c │ │ ├── malloc.c │ │ ├── mallocr.c │ │ ├── mbctype.h │ │ ├── mblen.c │ │ ├── mblen_r.c │ │ ├── mbrlen.c │ │ ├── mbrtowc.c │ │ ├── mbsinit.c │ │ ├── mbsnrtowcs.c │ │ ├── mbsrtowcs.c │ │ ├── mbstowcs.c │ │ ├── mbstowcs_r.c │ │ ├── mbtowc.c │ │ ├── mbtowc_r.c │ │ ├── mlock.c │ │ ├── mprec.c │ │ ├── mprec.h │ │ ├── mrand48.c │ │ ├── msize.c │ │ ├── mstats.c │ │ ├── mtrim.c │ │ ├── nano-mallocr.c │ │ ├── nrand48.c │ │ ├── on_exit.c │ │ ├── putenv.c │ │ ├── putenv_r.c │ │ ├── rand.c │ │ ├── rand48.c │ │ ├── rand48.h │ │ ├── rand_r.c │ │ ├── realloc.c │ │ ├── reallocf.c │ │ ├── sb_charsets.c │ │ ├── seed48.c │ │ ├── setenv.c │ │ ├── setenv_r.c │ │ ├── srand48.c │ │ ├── std.h │ │ ├── stdlib.tex │ │ ├── strtod.c │ │ ├── strtol.c │ │ ├── strtold.c │ │ ├── strtoll.c │ │ ├── strtoll_r.c │ │ ├── strtoul.c │ │ ├── strtoull.c │ │ ├── strtoull_r.c │ │ ├── system.c │ │ ├── valloc.c │ │ ├── wcrtomb.c │ │ ├── wcsnrtombs.c │ │ ├── wcsrtombs.c │ │ ├── wcstod.c │ │ ├── wcstol.c │ │ ├── wcstold.c │ │ ├── wcstoll.c │ │ ├── wcstoll_r.c │ │ ├── wcstombs.c │ │ ├── wcstombs_r.c │ │ ├── wcstoul.c │ │ ├── wcstoull.c │ │ ├── wcstoull_r.c │ │ ├── wctob.c │ │ ├── wctomb.c │ │ └── wctomb_r.c │ ├── string │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bcmp.c │ │ ├── bcopy.c │ │ ├── bzero.c │ │ ├── index.c │ │ ├── local.h │ │ ├── memccpy.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmem.c │ │ ├── memmove.c │ │ ├── mempcpy.c │ │ ├── memrchr.c │ │ ├── memset.c │ │ ├── rawmemchr.c │ │ ├── rindex.c │ │ ├── stpcpy.c │ │ ├── stpncpy.c │ │ ├── str-two-way.h │ │ ├── strcasecmp.c │ │ ├── strcasestr.c │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strchrnul.c │ │ ├── strcmp.c │ │ ├── strcoll.c │ │ ├── strcpy.c │ │ ├── strcspn.c │ │ ├── strdup.c │ │ ├── strdup_r.c │ │ ├── strerror.c │ │ ├── strerror_r.c │ │ ├── strings.tex │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strlen.c │ │ ├── strlwr.c │ │ ├── strncasecmp.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strndup.c │ │ ├── strndup_r.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strsep.c │ │ ├── strsignal.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtok.c │ │ ├── strtok_r.c │ │ ├── strupr.c │ │ ├── strxfrm.c │ │ ├── swab.c │ │ ├── u_strerr.c │ │ ├── wcpcpy.c │ │ ├── wcpncpy.c │ │ ├── wcscasecmp.c │ │ ├── wcscat.c │ │ ├── wcschr.c │ │ ├── wcscmp.c │ │ ├── wcscoll.c │ │ ├── wcscpy.c │ │ ├── wcscspn.c │ │ ├── wcsdup.c │ │ ├── wcslcat.c │ │ ├── wcslcpy.c │ │ ├── wcslen.c │ │ ├── wcsncasecmp.c │ │ ├── wcsncat.c │ │ ├── wcsncmp.c │ │ ├── wcsncpy.c │ │ ├── wcsnlen.c │ │ ├── wcspbrk.c │ │ ├── wcsrchr.c │ │ ├── wcsspn.c │ │ ├── wcsstr.c │ │ ├── wcstok.c │ │ ├── wcstrings.tex │ │ ├── wcswidth.c │ │ ├── wcsxfrm.c │ │ ├── wcwidth.c │ │ ├── wmemchr.c │ │ ├── wmemcmp.c │ │ ├── wmemcpy.c │ │ ├── wmemmove.c │ │ ├── wmemset.c │ │ └── xpg_strerror_r.c │ ├── sys.tex │ ├── sys │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── a29khif │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _alloc.S │ │ │ ├── _close.S │ │ │ ├── _cycles.S │ │ │ ├── _exit.S │ │ │ ├── _fstat.S │ │ │ ├── _getpsiz.S │ │ │ ├── _gettz.S │ │ │ ├── _ioctl.S │ │ │ ├── _iostat.S │ │ │ ├── _iowait.S │ │ │ ├── _isatty.S │ │ │ ├── _lseek.S │ │ │ ├── _open.S │ │ │ ├── _query.S │ │ │ ├── _read.S │ │ │ ├── _sbrk.S │ │ │ ├── _setim.S │ │ │ ├── _settrap.S │ │ │ ├── _setvec.S │ │ │ ├── _tmpnam.S │ │ │ ├── _write.S │ │ │ ├── aclocal.m4 │ │ │ ├── alloc.S │ │ │ ├── clock.S │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.S │ │ │ ├── getargs.S │ │ │ ├── getenv.S │ │ │ ├── getpid.c │ │ │ ├── kill.c │ │ │ ├── read.S │ │ │ ├── remove.S │ │ │ ├── rename.S │ │ │ ├── signal.S │ │ │ ├── stubs.S │ │ │ ├── sys │ │ │ │ ├── cpudef.h │ │ │ │ ├── fpsymbol.h │ │ │ │ ├── intrinsi.h │ │ │ │ ├── macros.h │ │ │ │ ├── proreg.h │ │ │ │ ├── romdcl.h │ │ │ │ ├── smartmac.h │ │ │ │ └── sysmac.h │ │ │ ├── systime.S │ │ │ └── vec.S │ │ ├── aclocal.m4 │ │ ├── arc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.S │ │ │ ├── dummy.S │ │ │ ├── isatty.c │ │ │ ├── mem-layout.c │ │ │ ├── sbrk.c │ │ │ ├── sys │ │ │ │ └── syscall.h │ │ │ └── syscalls.c │ │ ├── arm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── aeabi_atexit.c │ │ │ ├── arm.h │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.S │ │ │ ├── libcfunc.c │ │ │ ├── swi.h │ │ │ ├── sys │ │ │ │ ├── fcntl.h │ │ │ │ └── param.h │ │ │ ├── syscalls.c │ │ │ └── trap.S │ │ ├── configure │ │ ├── configure.in │ │ ├── d10v │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── creat.c │ │ │ ├── crt0.S │ │ │ ├── sys │ │ │ │ └── syscall.h │ │ │ ├── syscalls.c │ │ │ └── trap.S │ │ ├── decstation │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _main.c │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── sys │ │ │ │ └── dirent.h │ │ ├── epiphany │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── e_printf.c │ │ ├── h8300hms │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _exit.S │ │ │ ├── aclocal.m4 │ │ │ ├── close.S │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.S │ │ │ ├── crt1.c │ │ │ ├── fstat.S │ │ │ ├── lseek.S │ │ │ ├── misc.c │ │ │ ├── open.S │ │ │ ├── read.S │ │ │ ├── sbrk.c │ │ │ ├── setarch.h │ │ │ ├── stat.S │ │ │ ├── sys │ │ │ │ ├── file.h │ │ │ │ └── syscall.h │ │ │ ├── syscalls.c │ │ │ └── write.S │ │ ├── h8500hms │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.c │ │ │ ├── misc.c │ │ │ └── syscalls.c │ │ ├── linux │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── aio.c │ │ │ ├── aio64.c │ │ │ ├── argp │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── argp-ba.c │ │ │ │ ├── argp-eexst.c │ │ │ │ ├── argp-fmtstream.c │ │ │ │ ├── argp-fmtstream.h │ │ │ │ ├── argp-fs-xinl.c │ │ │ │ ├── argp-help.c │ │ │ │ ├── argp-namefrob.h │ │ │ │ ├── argp-parse.c │ │ │ │ ├── argp-pv.c │ │ │ │ ├── argp-pvh.c │ │ │ │ └── argp-xinl.c │ │ │ ├── bits │ │ │ │ ├── dirent.h │ │ │ │ ├── initspin.h │ │ │ │ ├── libc-lock.h │ │ │ │ ├── pthreadtypes.h │ │ │ │ └── typesizes.h │ │ │ ├── bp-checks.h │ │ │ ├── brk.c │ │ │ ├── calloc.c │ │ │ ├── callocr.c │ │ │ ├── cfreer.c │ │ │ ├── cfspeed.c │ │ │ ├── clock_getres.c │ │ │ ├── clock_gettime.c │ │ │ ├── clock_settime.c │ │ │ ├── cmath │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── math_private.h │ │ │ │ ├── s_cacos.c │ │ │ │ ├── s_cacosf.c │ │ │ │ ├── s_cacosh.c │ │ │ │ ├── s_cacoshf.c │ │ │ │ ├── s_cacoshl.c │ │ │ │ ├── s_cacosl.c │ │ │ │ ├── s_casin.c │ │ │ │ ├── s_casinf.c │ │ │ │ ├── s_casinh.c │ │ │ │ ├── s_casinhf.c │ │ │ │ ├── s_casinhl.c │ │ │ │ ├── s_casinl.c │ │ │ │ ├── s_catan.c │ │ │ │ ├── s_catanf.c │ │ │ │ ├── s_catanh.c │ │ │ │ ├── s_catanhf.c │ │ │ │ ├── s_catanhl.c │ │ │ │ ├── s_catanl.c │ │ │ │ ├── s_cbrtl.c │ │ │ │ ├── s_ccos.c │ │ │ │ ├── s_ccosf.c │ │ │ │ ├── s_ccosh.c │ │ │ │ ├── s_ccoshf.c │ │ │ │ ├── s_ccoshl.c │ │ │ │ ├── s_ccosl.c │ │ │ │ ├── s_cexp.c │ │ │ │ ├── s_cexpf.c │ │ │ │ ├── s_cexpl.c │ │ │ │ ├── s_clog.c │ │ │ │ ├── s_clog10.c │ │ │ │ ├── s_clog10f.c │ │ │ │ ├── s_clog10l.c │ │ │ │ ├── s_clogf.c │ │ │ │ ├── s_clogl.c │ │ │ │ ├── s_cpow.c │ │ │ │ ├── s_cpowf.c │ │ │ │ ├── s_cpowl.c │ │ │ │ ├── s_cproj.c │ │ │ │ ├── s_cprojf.c │ │ │ │ ├── s_cprojl.c │ │ │ │ ├── s_csin.c │ │ │ │ ├── s_csinf.c │ │ │ │ ├── s_csinh.c │ │ │ │ ├── s_csinhf.c │ │ │ │ ├── s_csinhl.c │ │ │ │ ├── s_csinl.c │ │ │ │ ├── s_csqrt.c │ │ │ │ ├── s_csqrtf.c │ │ │ │ ├── s_csqrtl.c │ │ │ │ ├── s_ctan.c │ │ │ │ ├── s_ctanf.c │ │ │ │ ├── s_ctanh.c │ │ │ │ ├── s_ctanhf.c │ │ │ │ ├── s_ctanhl.c │ │ │ │ └── s_ctanl.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── confstr.c │ │ │ ├── confstr.h │ │ │ ├── crt1.c │ │ │ ├── ctermid.c │ │ │ ├── dl │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── abi-tag.h │ │ │ │ ├── atomicity.h │ │ │ │ ├── dl-addr.c │ │ │ │ ├── dl-cache.c │ │ │ │ ├── dl-cache.h │ │ │ │ ├── dl-close.c │ │ │ │ ├── dl-debug.c │ │ │ │ ├── dl-deps.c │ │ │ │ ├── dl-dst.h │ │ │ │ ├── dl-error.c │ │ │ │ ├── dl-fini.c │ │ │ │ ├── dl-init.c │ │ │ │ ├── dl-iteratephdr.c │ │ │ │ ├── dl-libc.c │ │ │ │ ├── dl-librecon.h │ │ │ │ ├── dl-load.c │ │ │ │ ├── dl-local.h │ │ │ │ ├── dl-lookup.c │ │ │ │ ├── dl-lookupcfg.h │ │ │ │ ├── dl-minimal.c │ │ │ │ ├── dl-misc.c │ │ │ │ ├── dl-object.c │ │ │ │ ├── dl-open.c │ │ │ │ ├── dl-osinfo.h │ │ │ │ ├── dl-profile.c │ │ │ │ ├── dl-profstub.c │ │ │ │ ├── dl-reloc.c │ │ │ │ ├── dl-runtime.c │ │ │ │ ├── dl-support.c │ │ │ │ ├── dl-sym.c │ │ │ │ ├── dl-version.c │ │ │ │ ├── do-lookup.h │ │ │ │ ├── do-rel.h │ │ │ │ ├── dynamic-link.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── libintl.h │ │ │ │ ├── trusted-dirs.h │ │ │ │ └── unsecvars.h │ │ │ ├── fclean.c │ │ │ ├── flockfile.c │ │ │ ├── fpathconf.c │ │ │ ├── free.c │ │ │ ├── freer.c │ │ │ ├── fstab.c │ │ │ ├── fstatvfs.c │ │ │ ├── fstatvfs64.c │ │ │ ├── ftok.c │ │ │ ├── ftw.c │ │ │ ├── ftw64.c │ │ │ ├── funlockfile.c │ │ │ ├── getdate.c │ │ │ ├── getdate_err.c │ │ │ ├── gethostid.c │ │ │ ├── gethostname.c │ │ │ ├── getlogin.c │ │ │ ├── getopt.c │ │ │ ├── getopt1.c │ │ │ ├── getpwent.c │ │ │ ├── getreent.c │ │ │ ├── getrlimit64.c │ │ │ ├── getwd.c │ │ │ ├── hp-timing.h │ │ │ ├── iconv │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── categories.def │ │ │ │ ├── dummy-repertoire.c │ │ │ │ ├── gconv.c │ │ │ │ ├── gconv_builtin.c │ │ │ │ ├── gconv_builtin.h │ │ │ │ ├── gconv_cache.c │ │ │ │ ├── gconv_charset.h │ │ │ │ ├── gconv_close.c │ │ │ │ ├── gconv_conf.c │ │ │ │ ├── gconv_db.c │ │ │ │ ├── gconv_dl.c │ │ │ │ ├── gconv_int.h │ │ │ │ ├── gconv_open.c │ │ │ │ ├── gconv_simple.c │ │ │ │ ├── gconv_trans.c │ │ │ │ ├── hash-string.h │ │ │ │ ├── iconv.c │ │ │ │ ├── iconv.h │ │ │ │ ├── iconv_charmap.c │ │ │ │ ├── iconv_close.c │ │ │ │ ├── iconv_open.c │ │ │ │ ├── iconvconfig.h │ │ │ │ ├── loadinfo.h │ │ │ │ ├── localeinfo.h │ │ │ │ ├── loop.c │ │ │ │ └── skeleton.c │ │ │ ├── ids.c │ │ │ ├── include │ │ │ │ ├── argp.h │ │ │ │ ├── arpa │ │ │ │ │ ├── ftp.h │ │ │ │ │ ├── inet.h │ │ │ │ │ ├── nameser.h │ │ │ │ │ ├── nameser_compat.h │ │ │ │ │ ├── telnet.h │ │ │ │ │ └── tftp.h │ │ │ │ ├── bp-sym.h │ │ │ │ ├── cmathcalls.h │ │ │ │ ├── complex.h │ │ │ │ ├── dl-hash.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── gconv.h │ │ │ │ ├── getopt.h │ │ │ │ ├── glob.h │ │ │ │ ├── hesiod.h │ │ │ │ ├── iconv.h │ │ │ │ ├── ifaddrs.h │ │ │ │ ├── limits.h │ │ │ │ ├── link.h │ │ │ │ ├── ltdl.h │ │ │ │ ├── malloc.h │ │ │ │ ├── mcheck.h │ │ │ │ ├── mqueue.h │ │ │ │ ├── namespace.h │ │ │ │ ├── net │ │ │ │ │ ├── bpf.h │ │ │ │ │ ├── bpf_compat.h │ │ │ │ │ ├── bpfdesc.h │ │ │ │ │ ├── bridge.h │ │ │ │ │ ├── ethernet.h │ │ │ │ │ ├── fddi.h │ │ │ │ │ ├── if.h │ │ │ │ │ ├── if_arc.h │ │ │ │ │ ├── if_arp.h │ │ │ │ │ ├── if_dl.h │ │ │ │ │ ├── if_gif.h │ │ │ │ │ ├── if_ieee80211.h │ │ │ │ │ ├── if_llc.h │ │ │ │ │ ├── if_mib.h │ │ │ │ │ ├── if_ppp.h │ │ │ │ │ ├── if_slvar.h │ │ │ │ │ ├── if_sppp.h │ │ │ │ │ ├── if_stf.h │ │ │ │ │ ├── if_tap.h │ │ │ │ │ ├── if_tapvar.h │ │ │ │ │ ├── if_tun.h │ │ │ │ │ ├── if_tunvar.h │ │ │ │ │ ├── if_types.h │ │ │ │ │ ├── if_var.h │ │ │ │ │ ├── if_vlan_var.h │ │ │ │ │ ├── intrq.h │ │ │ │ │ ├── iso88025.h │ │ │ │ │ ├── net_osdep.h │ │ │ │ │ ├── netisr.h │ │ │ │ │ ├── pfil.h │ │ │ │ │ ├── pfkeyv2.h │ │ │ │ │ ├── ppp_comp.h │ │ │ │ │ ├── ppp_defs.h │ │ │ │ │ ├── radix.h │ │ │ │ │ ├── raw_cb.h │ │ │ │ │ ├── route.h │ │ │ │ │ ├── slcompress.h │ │ │ │ │ ├── slip.h │ │ │ │ │ └── zlib.h │ │ │ │ ├── netconfig.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netinet │ │ │ │ │ ├── icmp6.h │ │ │ │ │ ├── icmp_var.h │ │ │ │ │ ├── if_ether.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── igmp_var.h │ │ │ │ │ ├── in.h │ │ │ │ │ ├── in_gif.h │ │ │ │ │ ├── in_pcb.h │ │ │ │ │ ├── in_systm.h │ │ │ │ │ ├── in_var.h │ │ │ │ │ ├── ip.h │ │ │ │ │ ├── ip6.h │ │ │ │ │ ├── ip_dummynet.h │ │ │ │ │ ├── ip_ecn.h │ │ │ │ │ ├── ip_encap.h │ │ │ │ │ ├── ip_fw.h │ │ │ │ │ ├── ip_icmp.h │ │ │ │ │ ├── ip_mroute.h │ │ │ │ │ ├── ip_var.h │ │ │ │ │ ├── ipprotosw.h │ │ │ │ │ ├── tcp.h │ │ │ │ │ ├── tcp_debug.h │ │ │ │ │ ├── tcp_fsm.h │ │ │ │ │ ├── tcp_seq.h │ │ │ │ │ ├── tcp_timer.h │ │ │ │ │ ├── tcp_var.h │ │ │ │ │ ├── tcpip.h │ │ │ │ │ ├── udp.h │ │ │ │ │ └── udp_var.h │ │ │ │ ├── netinet6 │ │ │ │ │ ├── ah.h │ │ │ │ │ ├── ah6.h │ │ │ │ │ ├── esp.h │ │ │ │ │ ├── esp6.h │ │ │ │ │ ├── esp_rijndael.h │ │ │ │ │ ├── icmp6.h │ │ │ │ │ ├── in6.h │ │ │ │ │ ├── in6_gif.h │ │ │ │ │ ├── in6_ifattach.h │ │ │ │ │ ├── in6_pcb.h │ │ │ │ │ ├── in6_prefix.h │ │ │ │ │ ├── in6_var.h │ │ │ │ │ ├── ip6.h │ │ │ │ │ ├── ip6_ecn.h │ │ │ │ │ ├── ip6_fw.h │ │ │ │ │ ├── ip6_mroute.h │ │ │ │ │ ├── ip6_var.h │ │ │ │ │ ├── ip6protosw.h │ │ │ │ │ ├── ipcomp.h │ │ │ │ │ ├── ipcomp6.h │ │ │ │ │ ├── ipsec.h │ │ │ │ │ ├── ipsec6.h │ │ │ │ │ ├── mld6_var.h │ │ │ │ │ ├── nd6.h │ │ │ │ │ ├── pim6.h │ │ │ │ │ ├── pim6_var.h │ │ │ │ │ ├── raw_ip6.h │ │ │ │ │ ├── scope6_var.h │ │ │ │ │ ├── tcp6_var.h │ │ │ │ │ └── udp6_var.h │ │ │ │ ├── netns │ │ │ │ │ ├── idp.h │ │ │ │ │ ├── idp_var.h │ │ │ │ │ ├── ns.h │ │ │ │ │ ├── ns_error.h │ │ │ │ │ ├── ns_if.h │ │ │ │ │ ├── ns_pcb.h │ │ │ │ │ ├── sp.h │ │ │ │ │ ├── spidp.h │ │ │ │ │ ├── spp_debug.h │ │ │ │ │ ├── spp_timer.h │ │ │ │ │ └── spp_var.h │ │ │ │ ├── paths.h │ │ │ │ ├── pthread.h │ │ │ │ ├── regex.h │ │ │ │ ├── resolv.h │ │ │ │ ├── rpc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── auth.h │ │ │ │ │ ├── auth_des.h │ │ │ │ │ ├── auth_kerb.h │ │ │ │ │ ├── auth_unix.h │ │ │ │ │ ├── clnt.h │ │ │ │ │ ├── clnt_soc.h │ │ │ │ │ ├── clnt_stat.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── des_crypt.h │ │ │ │ │ ├── nettype.h │ │ │ │ │ ├── pmap_clnt.h │ │ │ │ │ ├── pmap_prot.h │ │ │ │ │ ├── pmap_rmt.h │ │ │ │ │ ├── raw.h │ │ │ │ │ ├── rpc.h │ │ │ │ │ ├── rpc_com.h │ │ │ │ │ ├── rpc_msg.h │ │ │ │ │ ├── rpcb_clnt.h │ │ │ │ │ ├── rpcb_prot.h │ │ │ │ │ ├── rpcb_prot.x │ │ │ │ │ ├── rpcent.h │ │ │ │ │ ├── svc.h │ │ │ │ │ ├── svc_auth.h │ │ │ │ │ ├── svc_dg.h │ │ │ │ │ ├── svc_soc.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── xdr.h │ │ │ │ ├── rune.h │ │ │ │ ├── runetype.h │ │ │ │ ├── sched.h │ │ │ │ ├── semaphore.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── setlocale.h │ │ │ │ ├── stdint.h │ │ │ │ ├── time.h │ │ │ │ ├── un-namespace.h │ │ │ │ ├── unistd.h │ │ │ │ └── wordexp.h │ │ │ ├── inode.c │ │ │ ├── internal_statvfs.c │ │ │ ├── intl │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── bindtextdom.c │ │ │ │ ├── catgets.c │ │ │ │ ├── catgetsinfo.h │ │ │ │ ├── dcgettext.c │ │ │ │ ├── dcigettext.c │ │ │ │ ├── dcngettext.c │ │ │ │ ├── dgettext.c │ │ │ │ ├── dngettext.c │ │ │ │ ├── explodename.c │ │ │ │ ├── finddomain.c │ │ │ │ ├── gettext.c │ │ │ │ ├── gettext.h │ │ │ │ ├── gettextP.h │ │ │ │ ├── hash-string.h │ │ │ │ ├── l10nflist.c │ │ │ │ ├── lcl_stpcpy.c │ │ │ │ ├── loadinfo.h │ │ │ │ ├── loadmsgcat.c │ │ │ │ ├── localealias.c │ │ │ │ ├── ngettext.c │ │ │ │ ├── open_catalog.c │ │ │ │ ├── plural.c │ │ │ │ ├── plural.y │ │ │ │ └── textdomain.c │ │ │ ├── io.c │ │ │ ├── io64.c │ │ │ ├── ipc.c │ │ │ ├── isatty.c │ │ │ ├── kernel_sigaction.h │ │ │ ├── libc-internal.h │ │ │ ├── libc-symbols.h │ │ │ ├── libc-tsd.h │ │ │ ├── libintl.h │ │ │ ├── linux.c │ │ │ ├── linux_fsinfo.h │ │ │ ├── linuxthreads │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── attr.c │ │ │ │ ├── barrier.c │ │ │ │ ├── bits │ │ │ │ │ ├── initspin.h │ │ │ │ │ ├── libc-lock.h │ │ │ │ │ ├── libc-tsd.h │ │ │ │ │ ├── local_lim.h │ │ │ │ │ ├── posix_opt.h │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ └── sigthread.h │ │ │ │ ├── bp-sym.h │ │ │ │ ├── cancel.c │ │ │ │ ├── condvar.c │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── defs.awk │ │ │ │ ├── ecmutex.c │ │ │ │ ├── events.c │ │ │ │ ├── getcpuclockid.c │ │ │ │ ├── getreent.c │ │ │ │ ├── internals.h │ │ │ │ ├── join.c │ │ │ │ ├── joinrace.c │ │ │ │ ├── kernel-features.h │ │ │ │ ├── libc-internal.h │ │ │ │ ├── libc-symbols.h │ │ │ │ ├── linuxthreads.texi │ │ │ │ ├── lockfile.c │ │ │ │ ├── machine │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.in │ │ │ │ │ ├── generic │ │ │ │ │ │ └── generic-sysdep.h │ │ │ │ │ └── i386 │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ │ ├── bp-asm.h │ │ │ │ │ │ ├── clone.S │ │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── configure.in │ │ │ │ │ │ ├── i386-sysdep.S │ │ │ │ │ │ ├── i386-sysdep.h │ │ │ │ │ │ ├── pspinlock.c │ │ │ │ │ │ ├── pt-machine.h │ │ │ │ │ │ ├── sigcontextinfo.h │ │ │ │ │ │ ├── stackinfo.h │ │ │ │ │ │ ├── sysdep.S │ │ │ │ │ │ ├── sysdep.h │ │ │ │ │ │ └── useldt.h │ │ │ │ ├── manager.c │ │ │ │ ├── mq_notify.c │ │ │ │ ├── mutex.c │ │ │ │ ├── no-tsd.c │ │ │ │ ├── oldsemaphore.c │ │ │ │ ├── posix-timer.h │ │ │ │ ├── prio.c │ │ │ │ ├── proc_service.h │ │ │ │ ├── pt-machine.c │ │ │ │ ├── ptclock_gettime.c │ │ │ │ ├── ptclock_settime.c │ │ │ │ ├── ptfork.c │ │ │ │ ├── pthread.c │ │ │ │ ├── ptlongjmp.c │ │ │ │ ├── queue.h │ │ │ │ ├── reent.c │ │ │ │ ├── reqsyscalls.c │ │ │ │ ├── restart.h │ │ │ │ ├── rwlock.c │ │ │ │ ├── semaphore.c │ │ │ │ ├── semaphore.h │ │ │ │ ├── shlib-compat.h │ │ │ │ ├── signals.c │ │ │ │ ├── specific.c │ │ │ │ ├── spinlock.c │ │ │ │ ├── spinlock.h │ │ │ │ ├── sysctl.c │ │ │ │ ├── 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_tsd.c │ │ │ │ ├── td_thr_validate.c │ │ │ │ ├── testrtsig.h │ │ │ │ ├── thread_db.h │ │ │ │ ├── thread_dbP.h │ │ │ │ ├── timer_create.c │ │ │ │ ├── timer_delete.c │ │ │ │ ├── timer_getoverr.c │ │ │ │ ├── timer_gettime.c │ │ │ │ ├── timer_routines.c │ │ │ │ ├── timer_settime.c │ │ │ │ ├── tst-cancel.c │ │ │ │ ├── tst-context.c │ │ │ │ ├── tststack.c │ │ │ │ ├── unload.c │ │ │ │ ├── weaks.c │ │ │ │ └── wrapsyscall.c │ │ │ ├── machine │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── hp-timing.h │ │ │ │ └── i386 │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.in │ │ │ │ │ ├── crt0.c │ │ │ │ │ ├── dl-machine.h │ │ │ │ │ ├── dl-procinfo.c │ │ │ │ │ ├── dl-procinfo.h │ │ │ │ │ ├── get_clockfreq.c │ │ │ │ │ ├── getpagesize.c │ │ │ │ │ ├── hp-timing.c │ │ │ │ │ ├── hp-timing.h │ │ │ │ │ ├── huge_val.h │ │ │ │ │ ├── i386mach.h │ │ │ │ │ ├── include │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ └── termios.h │ │ │ │ │ ├── setjmp.S │ │ │ │ │ ├── sigaction.c │ │ │ │ │ ├── sigstack.h │ │ │ │ │ ├── socketcall.h │ │ │ │ │ ├── syscall.h │ │ │ │ │ ├── sysdep.h │ │ │ │ │ └── weakalias.h │ │ │ ├── malign.c │ │ │ ├── malignr.c │ │ │ ├── mallinfor.c │ │ │ ├── malloc.c │ │ │ ├── mallocr.c │ │ │ ├── malloptr.c │ │ │ ├── mallstatsr.c │ │ │ ├── mcheck.c │ │ │ ├── mhooks.h │ │ │ ├── mmap.c │ │ │ ├── mntent.c │ │ │ ├── mntent_r.c │ │ │ ├── mq_close.c │ │ │ ├── mq_getattr.c │ │ │ ├── mq_notify.c │ │ │ ├── mq_open.c │ │ │ ├── mq_receive.c │ │ │ ├── mq_send.c │ │ │ ├── mq_setattr.c │ │ │ ├── mq_unlink.c │ │ │ ├── mqlocal.h │ │ │ ├── msize.c │ │ │ ├── msizer.c │ │ │ ├── mstats.c │ │ │ ├── mtrim.c │ │ │ ├── mtrimr.c │ │ │ ├── net │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── XXX-lookup.c │ │ │ │ ├── addr2ascii.c │ │ │ │ ├── alias-lookup.c │ │ │ │ ├── aliases.h │ │ │ │ ├── ascii2addr.c │ │ │ │ ├── base64.c │ │ │ │ ├── check_pf.c │ │ │ │ ├── databases.def │ │ │ │ ├── digits_dots.c │ │ │ │ ├── ether_aton.c │ │ │ │ ├── ether_aton_r.c │ │ │ │ ├── ether_hton.c │ │ │ │ ├── ether_line.c │ │ │ │ ├── ether_ntoa.c │ │ │ │ ├── ether_ntoa_r.c │ │ │ │ ├── ether_ntoh.c │ │ │ │ ├── etherent.h │ │ │ │ ├── ethers-lookup.c │ │ │ │ ├── function.def │ │ │ │ ├── getXXbyYY.c │ │ │ │ ├── getXXbyYY_r.c │ │ │ │ ├── getXXent.c │ │ │ │ ├── getXXent_r.c │ │ │ │ ├── getaddrinfo.c │ │ │ │ ├── getaliasent.c │ │ │ │ ├── getaliasent_r.c │ │ │ │ ├── getaliasname.c │ │ │ │ ├── getaliasname_r.c │ │ │ │ ├── gethstbyad.c │ │ │ │ ├── gethstbyad_r.c │ │ │ │ ├── gethstbynm.c │ │ │ │ ├── gethstbynm2.c │ │ │ │ ├── gethstbynm2_r.c │ │ │ │ ├── gethstbynm_r.c │ │ │ │ ├── gethstent.c │ │ │ │ ├── gethstent_r.c │ │ │ │ ├── getnameinfo.c │ │ │ │ ├── getnetbyad.c │ │ │ │ ├── getnetbyad_r.c │ │ │ │ ├── getnetbynm.c │ │ │ │ ├── getnetbynm_r.c │ │ │ │ ├── getnetent.c │ │ │ │ ├── getnetent_r.c │ │ │ │ ├── getnetgrent.c │ │ │ │ ├── getnetgrent_r.c │ │ │ │ ├── getnssent.c │ │ │ │ ├── getnssent_r.c │ │ │ │ ├── getproto.c │ │ │ │ ├── getproto_r.c │ │ │ │ ├── getprtent.c │ │ │ │ ├── getprtent_r.c │ │ │ │ ├── getprtname.c │ │ │ │ ├── getprtname_r.c │ │ │ │ ├── getrpcbyname.c │ │ │ │ ├── getrpcbyname_r.c │ │ │ │ ├── getrpcbynumber.c │ │ │ │ ├── getrpcbynumber_r.c │ │ │ │ ├── getrpcent.c │ │ │ │ ├── getrpcent_r.c │ │ │ │ ├── getservent.c │ │ │ │ ├── getservent_r.c │ │ │ │ ├── getsrvbynm.c │ │ │ │ ├── getsrvbynm_r.c │ │ │ │ ├── getsrvbypt.c │ │ │ │ ├── getsrvbypt_r.c │ │ │ │ ├── grp-lookup.c │ │ │ │ ├── herrno.c │ │ │ │ ├── hosts-lookup.c │ │ │ │ ├── ifaddrs.h │ │ │ │ ├── ifname.c │ │ │ │ ├── ifreq.c │ │ │ │ ├── ifreq.h │ │ │ │ ├── in6_addr.c │ │ │ │ ├── inet6_option.c │ │ │ │ ├── inet_addr.c │ │ │ │ ├── inet_lnaof.c │ │ │ │ ├── inet_mkadr.c │ │ │ │ ├── inet_net.c │ │ │ │ ├── inet_net_ntop.c │ │ │ │ ├── inet_net_pton.c │ │ │ │ ├── inet_neta.c │ │ │ │ ├── inet_netof.c │ │ │ │ ├── inet_ntoa.c │ │ │ │ ├── inet_ntop.c │ │ │ │ ├── inet_pton.c │ │ │ │ ├── issetugid-stub.c │ │ │ │ ├── key-lookup.c │ │ │ │ ├── local.h │ │ │ │ ├── netgroup.h │ │ │ │ ├── netgrp-lookup.c │ │ │ │ ├── network-lookup.c │ │ │ │ ├── not-cancel.h │ │ │ │ ├── ns_name.c │ │ │ │ ├── ns_netint.c │ │ │ │ ├── ns_parse.c │ │ │ │ ├── ns_print.c │ │ │ │ ├── ns_samedomain.c │ │ │ │ ├── ns_ttl.c │ │ │ │ ├── nsap_addr.c │ │ │ │ ├── nscd-types.h │ │ │ │ ├── nscd │ │ │ │ │ ├── nscd-client.h │ │ │ │ │ └── nscd_proto.h │ │ │ │ ├── nss.h │ │ │ │ ├── nsswitch.c │ │ │ │ ├── nsswitch.h │ │ │ │ ├── opensock.c │ │ │ │ ├── proto-lookup.c │ │ │ │ ├── pwd-lookup.c │ │ │ │ ├── rcmd.c │ │ │ │ ├── rcmdsh.c │ │ │ │ ├── recv.c │ │ │ │ ├── res_comp.c │ │ │ │ ├── res_data.c │ │ │ │ ├── res_debug.c │ │ │ │ ├── res_debug.h │ │ │ │ ├── res_hconf.c │ │ │ │ ├── res_hconf.h │ │ │ │ ├── res_init.c │ │ │ │ ├── res_libc.c │ │ │ │ ├── res_mkquery.c │ │ │ │ ├── res_query.c │ │ │ │ ├── res_send.c │ │ │ │ ├── rexec.c │ │ │ │ ├── rpc-lookup.c │ │ │ │ ├── ruserpass.c │ │ │ │ ├── send.c │ │ │ │ ├── service-lookup.c │ │ │ │ ├── spwd-lookup.c │ │ │ │ └── un-namespace.h │ │ │ ├── ntp_gettime.c │ │ │ ├── pathconf.c │ │ │ ├── pread.c │ │ │ ├── pread64.c │ │ │ ├── process.c │ │ │ ├── prof-freq.c │ │ │ ├── profile.c │ │ │ ├── pvallocr.c │ │ │ ├── pwrite.c │ │ │ ├── pwrite64.c │ │ │ ├── raise.c │ │ │ ├── readdir64.c │ │ │ ├── realloc.c │ │ │ ├── reallocr.c │ │ │ ├── realpath.c │ │ │ ├── rename.c │ │ │ ├── resource.c │ │ │ ├── scandir64.c │ │ │ ├── sched.c │ │ │ ├── select.c │ │ │ ├── seteuid.c │ │ │ ├── sethostid.c │ │ │ ├── sethostname.c │ │ │ ├── setrlimit64.c │ │ │ ├── shared.ld │ │ │ ├── shlib-compat.h │ │ │ ├── shm_open.c │ │ │ ├── shm_unlink.c │ │ │ ├── sig.c │ │ │ ├── sigaction.c │ │ │ ├── siglongjmp.c │ │ │ ├── signal.c │ │ │ ├── sigqueue.c │ │ │ ├── sigset.c │ │ │ ├── sigwait.c │ │ │ ├── sleep.c │ │ │ ├── socket.c │ │ │ ├── sockops.h │ │ │ ├── stack.c │ │ │ ├── statvfs.c │ │ │ ├── statvfs64.c │ │ │ ├── strsignal.c │ │ │ ├── strverscmp.c │ │ │ ├── sys │ │ │ │ ├── _types.h │ │ │ │ ├── cdefs.h │ │ │ │ ├── dirent.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── elfclass.h │ │ │ │ ├── errno.h │ │ │ │ ├── event.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── features.h │ │ │ │ ├── file.h │ │ │ │ ├── ioccom.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── libc-lock.h │ │ │ │ ├── libc-tsd.h │ │ │ │ ├── link.h │ │ │ │ ├── linux_time.h │ │ │ │ ├── lock.h │ │ │ │ ├── param.h │ │ │ │ ├── resource.h │ │ │ │ ├── select.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── sockio.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── string.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── types.h │ │ │ │ ├── unistd.h │ │ │ │ ├── utime.h │ │ │ │ ├── utmp.h │ │ │ │ ├── utsname.h │ │ │ │ └── wait.h │ │ │ ├── sysconf.c │ │ │ ├── sysctl.c │ │ │ ├── systat.c │ │ │ ├── system.c │ │ │ ├── tcdrain.c │ │ │ ├── tcsendbrk.c │ │ │ ├── termios.c │ │ │ ├── thread-m.h │ │ │ ├── time.c │ │ │ ├── ttyname_r.c │ │ │ ├── usleep.c │ │ │ ├── utimes.c │ │ │ ├── vallocr.c │ │ │ ├── versionsort.c │ │ │ ├── versionsort64.c │ │ │ └── wait.c │ │ ├── m88kbug │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.c │ │ │ ├── sys │ │ │ │ └── systraps.h │ │ │ └── syscalls.c │ │ ├── mmixware │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _exit.c │ │ │ ├── access.c │ │ │ ├── aclocal.m4 │ │ │ ├── chmod.c │ │ │ ├── chown.c │ │ │ ├── close.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── creat.c │ │ │ ├── crt0.c │ │ │ ├── execv.c │ │ │ ├── execve.c │ │ │ ├── fork.c │ │ │ ├── fstat.c │ │ │ ├── getpid.c │ │ │ ├── gettime.c │ │ │ ├── isatty.c │ │ │ ├── kill.c │ │ │ ├── link.c │ │ │ ├── lseek.c │ │ │ ├── open.c │ │ │ ├── pipe.c │ │ │ ├── read.c │ │ │ ├── sbrk.c │ │ │ ├── setjmp.S │ │ │ ├── stat.c │ │ │ ├── sys │ │ │ │ └── syscall.h │ │ │ ├── time.c │ │ │ ├── times.c │ │ │ ├── unlink.c │ │ │ ├── utime.c │ │ │ ├── wait.c │ │ │ └── write.c │ │ ├── netware │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.c │ │ │ ├── getpid.c │ │ │ └── link.c │ │ ├── rdos │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── chown.c │ │ │ ├── close.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.S │ │ │ ├── execve.c │ │ │ ├── fork.c │ │ │ ├── fstat.c │ │ │ ├── getenv.c │ │ │ ├── getpid.c │ │ │ ├── gettod.c │ │ │ ├── isatty.c │ │ │ ├── kill.c │ │ │ ├── link.c │ │ │ ├── lseek.c │ │ │ ├── open.c │ │ │ ├── rdos.S │ │ │ ├── rdos.h │ │ │ ├── rdoshelp.c │ │ │ ├── read.c │ │ │ ├── readlink.c │ │ │ ├── sbrk.c │ │ │ ├── stat.c │ │ │ ├── symlink.c │ │ │ ├── times.c │ │ │ ├── unlink.c │ │ │ ├── user.def │ │ │ ├── wait.c │ │ │ └── write.c │ │ ├── rtems │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── cpusetalloc.c │ │ │ ├── cpusetfree.c │ │ │ ├── crt0.c │ │ │ ├── dummysys.c │ │ │ ├── include │ │ │ │ └── limits.h │ │ │ ├── machine │ │ │ │ ├── _types.h │ │ │ │ ├── limits.h │ │ │ │ └── param.h │ │ │ └── sys │ │ │ │ ├── cpuset.h │ │ │ │ ├── dirent.h │ │ │ │ ├── param.h │ │ │ │ ├── syslimits.h │ │ │ │ └── utime.h │ │ ├── sh │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── creat.c │ │ │ ├── crt0.S │ │ │ ├── ftruncate.c │ │ │ ├── sys │ │ │ │ └── syscall.h │ │ │ ├── syscalls.c │ │ │ ├── trap.S │ │ │ └── truncate.c │ │ ├── sparc64 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _exit.S │ │ │ ├── _main.c │ │ │ ├── aclocal.m4 │ │ │ ├── cerror.S │ │ │ ├── closedir.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── creat.c │ │ │ ├── crt0.S │ │ │ ├── dup2.S │ │ │ ├── execve.S │ │ │ ├── ieee.c │ │ │ ├── isatty.c │ │ │ ├── lstat.S │ │ │ ├── opendir.c │ │ │ ├── readdir.c │ │ │ ├── rewinddir.c │ │ │ ├── sbrk.S │ │ │ ├── scandir.c │ │ │ ├── seekdir.c │ │ │ ├── sigsetjmp.S │ │ │ ├── stat.S │ │ │ ├── sys │ │ │ │ ├── dirent.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── file.h │ │ │ │ ├── stat.h │ │ │ │ ├── syscall.h │ │ │ │ ├── syscallasm.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── utime.h │ │ │ │ ├── utmp.h │ │ │ │ └── wait.h │ │ │ ├── telldir.c │ │ │ ├── template.S │ │ │ ├── template_r.S │ │ │ ├── utime.S │ │ │ ├── utime2.c │ │ │ └── wait.S │ │ ├── sun4 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _main.c │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── ieee.c │ │ │ └── sys │ │ │ │ ├── dirent.h │ │ │ │ ├── file.h │ │ │ │ ├── termios.h │ │ │ │ ├── utime.h │ │ │ │ ├── utmp.h │ │ │ │ └── wait.h │ │ ├── sysmec │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _exit.c │ │ │ ├── access.c │ │ │ ├── aclocal.m4 │ │ │ ├── chmod.c │ │ │ ├── chown.c │ │ │ ├── close.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── creat.c │ │ │ ├── crt0.S │ │ │ ├── crt1.c │ │ │ ├── execv.c │ │ │ ├── execve.c │ │ │ ├── fork.c │ │ │ ├── fstat.c │ │ │ ├── getpid.c │ │ │ ├── gettime.c │ │ │ ├── isatty.c │ │ │ ├── kill.c │ │ │ ├── lseek.c │ │ │ ├── open.c │ │ │ ├── pipe.c │ │ │ ├── read.c │ │ │ ├── sbrk.c │ │ │ ├── stat.c │ │ │ ├── sys │ │ │ │ └── syscall.h │ │ │ ├── time.c │ │ │ ├── times.c │ │ │ ├── trap.S │ │ │ ├── unlink.c │ │ │ ├── utime.c │ │ │ ├── wait.c │ │ │ └── write.c │ │ ├── sysnec810 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.S │ │ │ ├── io.S │ │ │ ├── misc.c │ │ │ ├── sbrk.c │ │ │ └── write.c │ │ ├── sysnecv850 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _exit.c │ │ │ ├── access.c │ │ │ ├── aclocal.m4 │ │ │ ├── chmod.c │ │ │ ├── chown.c │ │ │ ├── close.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── creat.c │ │ │ ├── crt0.S │ │ │ ├── crt1.c │ │ │ ├── execv.c │ │ │ ├── execve.c │ │ │ ├── fork.c │ │ │ ├── fstat.c │ │ │ ├── getpid.c │ │ │ ├── gettime.c │ │ │ ├── isatty.c │ │ │ ├── kill.c │ │ │ ├── link.c │ │ │ ├── lseek.c │ │ │ ├── open.c │ │ │ ├── pipe.c │ │ │ ├── read.c │ │ │ ├── rename.c │ │ │ ├── sbrk.c │ │ │ ├── stat.c │ │ │ ├── sys │ │ │ │ └── syscall.h │ │ │ ├── time.c │ │ │ ├── times.c │ │ │ ├── trap.S │ │ │ ├── unlink.c │ │ │ ├── utime.c │ │ │ ├── wait.c │ │ │ └── write.c │ │ ├── sysvi386 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _exit.S │ │ │ ├── _longjmp.S │ │ │ ├── _setjmp.S │ │ │ ├── access.S │ │ │ ├── aclocal.m4 │ │ │ ├── alarm.S │ │ │ ├── brk.S │ │ │ ├── cerror.S │ │ │ ├── chdir.S │ │ │ ├── chmod.S │ │ │ ├── close.S │ │ │ ├── closedir.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.c │ │ │ ├── dup.c │ │ │ ├── dup2.c │ │ │ ├── exec.c │ │ │ ├── execve.S │ │ │ ├── fcntl.S │ │ │ ├── fork.S │ │ │ ├── fpathconf.S │ │ │ ├── fps.S │ │ │ ├── fpx.c │ │ │ ├── fstat.S │ │ │ ├── getdents.S │ │ │ ├── getegid.S │ │ │ ├── geteuid.S │ │ │ ├── getgid.S │ │ │ ├── getgroups.S │ │ │ ├── getpid.S │ │ │ ├── getuid.S │ │ │ ├── ioctl.S │ │ │ ├── isatty.c │ │ │ ├── kill.S │ │ │ ├── link.S │ │ │ ├── lseek.S │ │ │ ├── mkdir.S │ │ │ ├── open.S │ │ │ ├── opendir.c │ │ │ ├── pathconf.S │ │ │ ├── pause.S │ │ │ ├── pipe.S │ │ │ ├── read.S │ │ │ ├── readdir.c │ │ │ ├── rename.S │ │ │ ├── rewinddir.c │ │ │ ├── rmdir.S │ │ │ ├── sbrk.c │ │ │ ├── scandir.c │ │ │ ├── seekdir.c │ │ │ ├── setgid.S │ │ │ ├── setuid.S │ │ │ ├── sigaction.S │ │ │ ├── signal.S │ │ │ ├── sigprocmask.S │ │ │ ├── sleep.c │ │ │ ├── speed.c │ │ │ ├── stat.S │ │ │ ├── sys │ │ │ │ ├── dirent.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── termio.h │ │ │ │ ├── termios.h │ │ │ │ ├── utime.h │ │ │ │ ├── utmp.h │ │ │ │ └── wait.h │ │ │ ├── sysconf.S │ │ │ ├── tcgetattr.c │ │ │ ├── tcline.c │ │ │ ├── tcsetattr.c │ │ │ ├── telldir.c │ │ │ ├── time.S │ │ │ ├── times.S │ │ │ ├── unlink.S │ │ │ ├── utime.S │ │ │ ├── wait.S │ │ │ ├── waitpid.S │ │ │ └── write.S │ │ ├── sysvnecv70 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── cerror.S │ │ │ ├── close.S │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.S │ │ │ ├── exit.S │ │ │ ├── fps.S │ │ │ ├── fpx.c │ │ │ ├── fstat.S │ │ │ ├── ioctl.S │ │ │ ├── isatty.S │ │ │ ├── lseek.S │ │ │ ├── open.S │ │ │ ├── read.S │ │ │ ├── sbrk.S │ │ │ ├── sysv60.S │ │ │ ├── sysvnecv70.tex │ │ │ └── write.S │ │ ├── tic80 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ └── crt0.c │ │ ├── w65 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.c │ │ │ ├── sys │ │ │ │ └── syscall.h │ │ │ ├── syscalls.c │ │ │ └── trap.c │ │ └── z8ksim │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── crt0.c │ │ │ ├── glue.c │ │ │ └── sys │ │ │ └── syscall.h │ ├── syscalls │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── sysclose.c │ │ ├── sysexecve.c │ │ ├── sysfcntl.c │ │ ├── sysfork.c │ │ ├── sysfstat.c │ │ ├── sysgetpid.c │ │ ├── sysgettod.c │ │ ├── sysisatty.c │ │ ├── syskill.c │ │ ├── syslink.c │ │ ├── syslseek.c │ │ ├── sysopen.c │ │ ├── sysread.c │ │ ├── syssbrk.c │ │ ├── sysstat.c │ │ ├── systimes.c │ │ ├── sysunlink.c │ │ ├── syswait.c │ │ └── syswrite.c │ ├── time │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── asctime.c │ │ ├── asctime_r.c │ │ ├── clock.c │ │ ├── ctime.c │ │ ├── ctime_r.c │ │ ├── difftime.c │ │ ├── gettzinfo.c │ │ ├── gmtime.c │ │ ├── gmtime_r.c │ │ ├── lcltime.c │ │ ├── lcltime_r.c │ │ ├── local.h │ │ ├── mktime.c │ │ ├── mktm_r.c │ │ ├── strftime.c │ │ ├── strptime.c │ │ ├── time.c │ │ ├── time.tex │ │ ├── tzlock.c │ │ ├── tzset.c │ │ ├── tzset_r.c │ │ ├── tzvars.c │ │ └── wcsftime.c │ ├── unix │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── basename.c │ │ ├── dirname.c │ │ ├── getcwd.c │ │ ├── getlogin.c │ │ ├── getpass.c │ │ ├── getpwent.c │ │ ├── getut.c │ │ ├── pread.c │ │ ├── pwrite.c │ │ ├── sigset.c │ │ ├── ttyname.c │ │ ├── ttyname.h │ │ └── ttyname_r.c │ └── xdr │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── dummy.c │ │ ├── xdr.c │ │ ├── xdr_array.c │ │ ├── xdr_float.c │ │ ├── xdr_float_vax.c │ │ ├── xdr_mem.c │ │ ├── xdr_private.c │ │ ├── xdr_private.h │ │ ├── xdr_rec.c │ │ ├── xdr_reference.c │ │ ├── xdr_sizeof.c │ │ └── xdr_stdio.c ├── libm │ ├── Makefile.am │ ├── Makefile.in │ ├── aclocal.m4 │ ├── common │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── acoshl.c │ │ ├── acosl.c │ │ ├── asinhl.c │ │ ├── asinl.c │ │ ├── atan2l.c │ │ ├── atanhl.c │ │ ├── atanl.c │ │ ├── cbrtl.c │ │ ├── ceill.c │ │ ├── copysignl.c │ │ ├── coshl.c │ │ ├── cosl.c │ │ ├── erfcl.c │ │ ├── erfl.c │ │ ├── exp2l.c │ │ ├── expl.c │ │ ├── expm1l.c │ │ ├── fabsl.c │ │ ├── fdiml.c │ │ ├── fdlibm.h │ │ ├── floorl.c │ │ ├── fmal.c │ │ ├── fmaxl.c │ │ ├── fminl.c │ │ ├── fmodl.c │ │ ├── frexpl.c │ │ ├── hypotl.c │ │ ├── ilogbl.c │ │ ├── isgreater.c │ │ ├── ldexpl.c │ │ ├── lgammal.c │ │ ├── llrintl.c │ │ ├── llroundl.c │ │ ├── local.h │ │ ├── log10l.c │ │ ├── log1pl.c │ │ ├── logl.c │ │ ├── lrintl.c │ │ ├── lroundl.c │ │ ├── modfl.c │ │ ├── nanl.c │ │ ├── nearbyintl.c │ │ ├── nextafterl.c │ │ ├── powl.c │ │ ├── remainderl.c │ │ ├── remquol.c │ │ ├── rintl.c │ │ ├── roundl.c │ │ ├── s_cbrt.c │ │ ├── s_copysign.c │ │ ├── s_exp10.c │ │ ├── s_expm1.c │ │ ├── s_fdim.c │ │ ├── s_finite.c │ │ ├── s_fma.c │ │ ├── s_fmax.c │ │ ├── s_fmin.c │ │ ├── s_fpclassify.c │ │ ├── s_ilogb.c │ │ ├── s_infconst.c │ │ ├── s_infinity.c │ │ ├── s_isinf.c │ │ ├── s_isinfd.c │ │ ├── s_isnan.c │ │ ├── s_isnand.c │ │ ├── s_lib_ver.c │ │ ├── s_llrint.c │ │ ├── s_llround.c │ │ ├── s_log1p.c │ │ ├── s_log2.c │ │ ├── s_logb.c │ │ ├── s_lrint.c │ │ ├── s_lround.c │ │ ├── s_matherr.c │ │ ├── s_modf.c │ │ ├── s_nan.c │ │ ├── s_nearbyint.c │ │ ├── s_nextafter.c │ │ ├── s_pow10.c │ │ ├── s_remquo.c │ │ ├── s_rint.c │ │ ├── s_round.c │ │ ├── s_scalbln.c │ │ ├── s_scalbn.c │ │ ├── s_signbit.c │ │ ├── s_trunc.c │ │ ├── scalblnl.c │ │ ├── scalbnl.c │ │ ├── sf_cbrt.c │ │ ├── sf_copysign.c │ │ ├── sf_exp10.c │ │ ├── sf_expm1.c │ │ ├── sf_fdim.c │ │ ├── sf_finite.c │ │ ├── sf_fma.c │ │ ├── sf_fmax.c │ │ ├── sf_fmin.c │ │ ├── sf_fpclassify.c │ │ ├── sf_ilogb.c │ │ ├── sf_infinity.c │ │ ├── sf_isinf.c │ │ ├── sf_isinff.c │ │ ├── sf_isnan.c │ │ ├── sf_isnanf.c │ │ ├── sf_llrint.c │ │ ├── sf_llround.c │ │ ├── sf_log1p.c │ │ ├── sf_log2.c │ │ ├── sf_logb.c │ │ ├── sf_lrint.c │ │ ├── sf_lround.c │ │ ├── sf_modf.c │ │ ├── sf_nan.c │ │ ├── sf_nearbyint.c │ │ ├── sf_nextafter.c │ │ ├── sf_pow10.c │ │ ├── sf_remquo.c │ │ ├── sf_rint.c │ │ ├── sf_round.c │ │ ├── sf_scalbln.c │ │ ├── sf_scalbn.c │ │ ├── sf_trunc.c │ │ ├── sinhl.c │ │ ├── sinl.c │ │ ├── sqrtl.c │ │ ├── tanhl.c │ │ ├── tanl.c │ │ ├── tgammal.c │ │ └── truncl.c │ ├── complex │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cabs.c │ │ ├── cabsf.c │ │ ├── cacos.c │ │ ├── cacosf.c │ │ ├── cacosh.c │ │ ├── cacoshf.c │ │ ├── carg.c │ │ ├── cargf.c │ │ ├── casin.c │ │ ├── casinf.c │ │ ├── casinh.c │ │ ├── casinhf.c │ │ ├── catan.c │ │ ├── catanf.c │ │ ├── catanh.c │ │ ├── catanhf.c │ │ ├── ccos.c │ │ ├── ccosf.c │ │ ├── ccosh.c │ │ ├── ccoshf.c │ │ ├── cephes_subr.c │ │ ├── cephes_subr.h │ │ ├── cephes_subrf.c │ │ ├── cephes_subrf.h │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── cimag.c │ │ ├── cimagf.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── complex.tex │ │ ├── conj.c │ │ ├── conjf.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── cproj.c │ │ ├── cprojf.c │ │ ├── creal.c │ │ ├── crealf.c │ │ ├── csin.c │ │ ├── csinf.c │ │ ├── csinh.c │ │ ├── csinhf.c │ │ ├── csqrt.c │ │ ├── csqrtf.c │ │ ├── ctan.c │ │ ├── ctanf.c │ │ ├── ctanh.c │ │ └── ctanhf.c │ ├── config.h.in │ ├── configure │ ├── configure.in │ ├── libm.texinfo │ ├── machine │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aarch64 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── s_ceil.c │ │ │ ├── s_floor.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmax.c │ │ │ ├── s_fmin.c │ │ │ ├── s_llrint.c │ │ │ ├── s_llround.c │ │ │ ├── s_lrint.c │ │ │ ├── s_lround.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_rint.c │ │ │ ├── s_round.c │ │ │ ├── s_trunc.c │ │ │ ├── sf_ceil.c │ │ │ ├── sf_floor.c │ │ │ ├── sf_fma.c │ │ │ ├── sf_fmax.c │ │ │ ├── sf_fmin.c │ │ │ ├── sf_llrint.c │ │ │ ├── sf_llround.c │ │ │ ├── sf_lrint.c │ │ │ ├── sf_lround.c │ │ │ ├── sf_nearbyint.c │ │ │ ├── sf_rint.c │ │ │ ├── sf_round.c │ │ │ └── sf_trunc.c │ │ ├── aclocal.m4 │ │ ├── arm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── s_ceil.c │ │ │ ├── s_floor.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_rint.c │ │ │ ├── s_round.c │ │ │ ├── s_trunc.c │ │ │ ├── sf_ceil.c │ │ │ ├── sf_floor.c │ │ │ ├── sf_nearbyint.c │ │ │ ├── sf_rint.c │ │ │ ├── sf_round.c │ │ │ └── sf_trunc.c │ │ ├── configure │ │ ├── configure.in │ │ ├── i386 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── f_atan2.S │ │ │ ├── f_atan2f.S │ │ │ ├── f_exp.c │ │ │ ├── f_expf.c │ │ │ ├── f_frexp.S │ │ │ ├── f_frexpf.S │ │ │ ├── f_ldexp.S │ │ │ ├── f_ldexpf.S │ │ │ ├── f_llrint.c │ │ │ ├── f_llrintf.c │ │ │ ├── f_llrintl.c │ │ │ ├── f_log.S │ │ │ ├── f_log10.S │ │ │ ├── f_log10f.S │ │ │ ├── f_logf.S │ │ │ ├── f_lrint.c │ │ │ ├── f_lrintf.c │ │ │ ├── f_lrintl.c │ │ │ ├── f_math.h │ │ │ ├── f_pow.c │ │ │ ├── f_powf.c │ │ │ ├── f_rint.c │ │ │ ├── f_rintf.c │ │ │ ├── f_rintl.c │ │ │ ├── f_tan.S │ │ │ ├── f_tanf.S │ │ │ └── i386mach.h │ │ └── spu │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── fe_dfl_env.c │ │ │ ├── feclearexcept.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexceptflag.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcept.c │ │ │ ├── feraiseexcept.c │ │ │ ├── fesetenv.c │ │ │ ├── fesetexceptflag.c │ │ │ ├── fesetround.c │ │ │ ├── fetestexcept.c │ │ │ ├── feupdateenv.c │ │ │ ├── headers │ │ │ ├── acos.h │ │ │ ├── acosd2.h │ │ │ ├── acosf.h │ │ │ ├── acosf4.h │ │ │ ├── acosh.h │ │ │ ├── acoshd2.h │ │ │ ├── acoshf.h │ │ │ ├── acoshf4.h │ │ │ ├── asin.h │ │ │ ├── asind2.h │ │ │ ├── asinf.h │ │ │ ├── asinf4.h │ │ │ ├── asinh.h │ │ │ ├── asinhd2.h │ │ │ ├── asinhf.h │ │ │ ├── asinhf4.h │ │ │ ├── atan.h │ │ │ ├── atan2.h │ │ │ ├── atan2d2.h │ │ │ ├── atan2f.h │ │ │ ├── atan2f4.h │ │ │ ├── atand2.h │ │ │ ├── atanf.h │ │ │ ├── atanf4.h │ │ │ ├── atanh.h │ │ │ ├── atanhd2.h │ │ │ ├── atanhf.h │ │ │ ├── atanhf4.h │ │ │ ├── cbrt.h │ │ │ ├── cbrtf.h │ │ │ ├── ceil.h │ │ │ ├── ceilf.h │ │ │ ├── copysign.h │ │ │ ├── copysignf.h │ │ │ ├── cos.h │ │ │ ├── cos_sin.h │ │ │ ├── cosd2.h │ │ │ ├── cosf.h │ │ │ ├── cosf4.h │ │ │ ├── cosh.h │ │ │ ├── coshd2.h │ │ │ ├── coshf.h │ │ │ ├── coshf4.h │ │ │ ├── divd2.h │ │ │ ├── divf4.h │ │ │ ├── dom_chkd_less_than.h │ │ │ ├── dom_chkd_negone_one.h │ │ │ ├── dom_chkf_less_than.h │ │ │ ├── dom_chkf_negone_one.h │ │ │ ├── erf.h │ │ │ ├── erf_utils.h │ │ │ ├── erfc.h │ │ │ ├── erfcd2.h │ │ │ ├── erfcf.h │ │ │ ├── erfcf4.h │ │ │ ├── erfd2.h │ │ │ ├── erff.h │ │ │ ├── erff4.h │ │ │ ├── exp.h │ │ │ ├── exp2.h │ │ │ ├── exp2d2.h │ │ │ ├── exp2f.h │ │ │ ├── exp2f4.h │ │ │ ├── expd2.h │ │ │ ├── expf.h │ │ │ ├── expf4.h │ │ │ ├── expm1.h │ │ │ ├── expm1d2.h │ │ │ ├── expm1f.h │ │ │ ├── expm1f4.h │ │ │ ├── fabs.h │ │ │ ├── fabsf.h │ │ │ ├── fdim.h │ │ │ ├── fdimf.h │ │ │ ├── feclearexcept.h │ │ │ ├── fefpscr.h │ │ │ ├── fegetenv.h │ │ │ ├── fegetexceptflag.h │ │ │ ├── fegetround.h │ │ │ ├── feholdexcept.h │ │ │ ├── feraiseexcept.h │ │ │ ├── fesetenv.h │ │ │ ├── fesetexceptflag.h │ │ │ ├── fesetround.h │ │ │ ├── fetestexcept.h │ │ │ ├── feupdateenv.h │ │ │ ├── floor.h │ │ │ ├── floord2.h │ │ │ ├── floorf.h │ │ │ ├── floorf4.h │ │ │ ├── fma.h │ │ │ ├── fmaf.h │ │ │ ├── fmax.h │ │ │ ├── fmaxf.h │ │ │ ├── fmin.h │ │ │ ├── fminf.h │ │ │ ├── fmod.h │ │ │ ├── fmodf.h │ │ │ ├── frexp.h │ │ │ ├── frexpf.h │ │ │ ├── hypot.h │ │ │ ├── hypotd2.h │ │ │ ├── hypotf.h │ │ │ ├── hypotf4.h │ │ │ ├── ilogb.h │ │ │ ├── ilogbf.h │ │ │ ├── isnan.h │ │ │ ├── isnand2.h │ │ │ ├── isnanf.h │ │ │ ├── isnanf4.h │ │ │ ├── ldexp.h │ │ │ ├── ldexpd2.h │ │ │ ├── ldexpf.h │ │ │ ├── ldexpf4.h │ │ │ ├── lgamma.h │ │ │ ├── lgammad2.h │ │ │ ├── lgammaf.h │ │ │ ├── lgammaf4.h │ │ │ ├── llrint.h │ │ │ ├── llrintf.h │ │ │ ├── llround.h │ │ │ ├── llroundf.h │ │ │ ├── log.h │ │ │ ├── log10.h │ │ │ ├── log10d2.h │ │ │ ├── log10f.h │ │ │ ├── log1p.h │ │ │ ├── log1pd2.h │ │ │ ├── log1pf.h │ │ │ ├── log1pf4.h │ │ │ ├── log2.h │ │ │ ├── log2d2.h │ │ │ ├── log2f.h │ │ │ ├── log2f4.h │ │ │ ├── logbf.h │ │ │ ├── logbf4.h │ │ │ ├── logd2.h │ │ │ ├── logf.h │ │ │ ├── logf4.h │ │ │ ├── lrint.h │ │ │ ├── lrintf.h │ │ │ ├── lround.h │ │ │ ├── lroundf.h │ │ │ ├── nearbyint.h │ │ │ ├── nearbyintf.h │ │ │ ├── nearbyintf4.h │ │ │ ├── nextafter.h │ │ │ ├── nextafterd2.h │ │ │ ├── nextafterf.h │ │ │ ├── nextafterf4.h │ │ │ ├── pow.h │ │ │ ├── powd2.h │ │ │ ├── powf.h │ │ │ ├── powf4.h │ │ │ ├── recipd2.h │ │ │ ├── recipf4.h │ │ │ ├── remainder.h │ │ │ ├── remainderf.h │ │ │ ├── remquo.h │ │ │ ├── remquof.h │ │ │ ├── rint.h │ │ │ ├── rintf.h │ │ │ ├── rintf4.h │ │ │ ├── round.h │ │ │ ├── roundf.h │ │ │ ├── scalbn.h │ │ │ ├── scalbnf.h │ │ │ ├── scalbnf4.h │ │ │ ├── signbit.h │ │ │ ├── signbitd2.h │ │ │ ├── simdmath.h │ │ │ ├── sin.h │ │ │ ├── sincos.h │ │ │ ├── sincosd2.h │ │ │ ├── sincosf.h │ │ │ ├── sincosf4.h │ │ │ ├── sind2.h │ │ │ ├── sinf.h │ │ │ ├── sinf4.h │ │ │ ├── sinh.h │ │ │ ├── sinhd2.h │ │ │ ├── sinhf.h │ │ │ ├── sinhf4.h │ │ │ ├── sqrt.h │ │ │ ├── sqrtd2.h │ │ │ ├── sqrtf.h │ │ │ ├── sqrtf4.h │ │ │ ├── tan.h │ │ │ ├── tand2.h │ │ │ ├── tanf.h │ │ │ ├── tanf4.h │ │ │ ├── tanh.h │ │ │ ├── tanhd2.h │ │ │ ├── tanhf.h │ │ │ ├── tanhf4.h │ │ │ ├── tgamma.h │ │ │ ├── tgammad2.h │ │ │ ├── tgammaf.h │ │ │ ├── tgammaf4.h │ │ │ ├── trunc.h │ │ │ ├── truncd2.h │ │ │ ├── truncf.h │ │ │ ├── truncf4.h │ │ │ └── vec_literal.h │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llround.c │ │ │ ├── llroundf.c │ │ │ ├── log2.c │ │ │ ├── log2f.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_floor.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmax.c │ │ │ ├── s_fmin.c │ │ │ ├── s_frexp.c │ │ │ ├── s_ilogb.c │ │ │ ├── s_isnan.c │ │ │ ├── s_ldexp.c │ │ │ ├── s_log1p.c │ │ │ ├── s_lrint.c │ │ │ ├── s_lround.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_nextafter.c │ │ │ ├── s_remquo.c │ │ │ ├── s_rint.c │ │ │ ├── s_round.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_sin.c │ │ │ ├── s_tan.c │ │ │ ├── s_tanh.c │ │ │ ├── s_trunc.c │ │ │ ├── sf_asinh.c │ │ │ ├── sf_atan.c │ │ │ ├── sf_cbrt.c │ │ │ ├── sf_ceil.c │ │ │ ├── sf_copysign.c │ │ │ ├── sf_cos.c │ │ │ ├── sf_erf.c │ │ │ ├── sf_expm1.c │ │ │ ├── sf_fabs.c │ │ │ ├── sf_fdim.c │ │ │ ├── sf_finite.c │ │ │ ├── sf_floor.c │ │ │ ├── sf_fma.c │ │ │ ├── sf_fmax.c │ │ │ ├── sf_fmin.c │ │ │ ├── sf_fpclassify.c │ │ │ ├── sf_frexp.c │ │ │ ├── sf_ilogb.c │ │ │ ├── sf_isinf.c │ │ │ ├── sf_isinff.c │ │ │ ├── sf_isnan.c │ │ │ ├── sf_isnanf.c │ │ │ ├── sf_ldexp.c │ │ │ ├── sf_log1p.c │ │ │ ├── sf_logb.c │ │ │ ├── sf_lrint.c │ │ │ ├── sf_lround.c │ │ │ ├── sf_nan.c │ │ │ ├── sf_nearbyint.c │ │ │ ├── sf_nextafter.c │ │ │ ├── sf_remquo.c │ │ │ ├── sf_rint.c │ │ │ ├── sf_round.c │ │ │ ├── sf_scalbn.c │ │ │ ├── sf_sin.c │ │ │ ├── sf_tan.c │ │ │ ├── sf_tanh.c │ │ │ ├── sf_trunc.c │ │ │ ├── w_acos.c │ │ │ ├── w_acosh.c │ │ │ ├── w_asin.c │ │ │ ├── w_atan2.c │ │ │ ├── w_atanh.c │ │ │ ├── w_cosh.c │ │ │ ├── w_exp.c │ │ │ ├── w_exp2.c │ │ │ ├── w_fmod.c │ │ │ ├── w_hypot.c │ │ │ ├── w_lgamma.c │ │ │ ├── w_log.c │ │ │ ├── w_log10.c │ │ │ ├── w_pow.c │ │ │ ├── w_remainder.c │ │ │ ├── w_sincos.c │ │ │ ├── w_sinh.c │ │ │ ├── w_sqrt.c │ │ │ ├── w_tgamma.c │ │ │ ├── wf_acos.c │ │ │ ├── wf_acosh.c │ │ │ ├── wf_asin.c │ │ │ ├── wf_atan2.c │ │ │ ├── wf_atanh.c │ │ │ ├── wf_cosh.c │ │ │ ├── wf_exp.c │ │ │ ├── wf_exp2.c │ │ │ ├── wf_fmod.c │ │ │ ├── wf_hypot.c │ │ │ ├── wf_lgamma.c │ │ │ ├── wf_log.c │ │ │ ├── wf_log10.c │ │ │ ├── wf_pow.c │ │ │ ├── wf_remainder.c │ │ │ ├── wf_sincos.c │ │ │ ├── wf_sinh.c │ │ │ ├── wf_sqrt.c │ │ │ └── wf_tgamma.c │ ├── math │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── 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_log.c │ │ ├── e_log10.c │ │ ├── e_pow.c │ │ ├── e_rem_pio2.c │ │ ├── e_remainder.c │ │ ├── e_scalb.c │ │ ├── e_sinh.c │ │ ├── e_sqrt.c │ │ ├── ef_acos.c │ │ ├── ef_acosh.c │ │ ├── ef_asin.c │ │ ├── ef_atan2.c │ │ ├── ef_atanh.c │ │ ├── ef_cosh.c │ │ ├── ef_exp.c │ │ ├── ef_fmod.c │ │ ├── ef_hypot.c │ │ ├── ef_j0.c │ │ ├── ef_j1.c │ │ ├── ef_jn.c │ │ ├── ef_log.c │ │ ├── ef_log10.c │ │ ├── ef_pow.c │ │ ├── ef_rem_pio2.c │ │ ├── ef_remainder.c │ │ ├── ef_scalb.c │ │ ├── ef_sinh.c │ │ ├── ef_sqrt.c │ │ ├── er_gamma.c │ │ ├── er_lgamma.c │ │ ├── erf_gamma.c │ │ ├── erf_lgamma.c │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── k_standard.c │ │ ├── k_tan.c │ │ ├── kf_cos.c │ │ ├── kf_rem_pio2.c │ │ ├── kf_sin.c │ │ ├── kf_tan.c │ │ ├── math.tex │ │ ├── s_asinh.c │ │ ├── s_atan.c │ │ ├── s_ceil.c │ │ ├── s_cos.c │ │ ├── s_erf.c │ │ ├── s_fabs.c │ │ ├── s_floor.c │ │ ├── s_frexp.c │ │ ├── s_ldexp.c │ │ ├── s_signif.c │ │ ├── s_sin.c │ │ ├── s_tan.c │ │ ├── s_tanh.c │ │ ├── sf_asinh.c │ │ ├── sf_atan.c │ │ ├── sf_ceil.c │ │ ├── sf_cos.c │ │ ├── sf_erf.c │ │ ├── sf_fabs.c │ │ ├── sf_floor.c │ │ ├── sf_frexp.c │ │ ├── sf_ldexp.c │ │ ├── sf_signif.c │ │ ├── sf_sin.c │ │ ├── sf_tan.c │ │ ├── sf_tanh.c │ │ ├── w_acos.c │ │ ├── w_acosh.c │ │ ├── w_asin.c │ │ ├── w_atan2.c │ │ ├── w_atanh.c │ │ ├── w_cosh.c │ │ ├── w_drem.c │ │ ├── w_exp.c │ │ ├── w_exp2.c │ │ ├── w_fmod.c │ │ ├── w_gamma.c │ │ ├── w_hypot.c │ │ ├── w_j0.c │ │ ├── w_j1.c │ │ ├── w_jn.c │ │ ├── w_lgamma.c │ │ ├── w_log.c │ │ ├── w_log10.c │ │ ├── w_pow.c │ │ ├── w_remainder.c │ │ ├── w_scalb.c │ │ ├── w_sincos.c │ │ ├── w_sinh.c │ │ ├── w_sqrt.c │ │ ├── w_tgamma.c │ │ ├── wf_acos.c │ │ ├── wf_acosh.c │ │ ├── wf_asin.c │ │ ├── wf_atan2.c │ │ ├── wf_atanh.c │ │ ├── wf_cosh.c │ │ ├── wf_drem.c │ │ ├── wf_exp.c │ │ ├── wf_exp2.c │ │ ├── wf_fmod.c │ │ ├── wf_gamma.c │ │ ├── wf_hypot.c │ │ ├── wf_j0.c │ │ ├── wf_j1.c │ │ ├── wf_jn.c │ │ ├── wf_lgamma.c │ │ ├── wf_log.c │ │ ├── wf_log10.c │ │ ├── wf_pow.c │ │ ├── wf_remainder.c │ │ ├── wf_scalb.c │ │ ├── wf_sincos.c │ │ ├── wf_sinh.c │ │ ├── wf_sqrt.c │ │ ├── wf_tgamma.c │ │ ├── wr_gamma.c │ │ ├── wr_lgamma.c │ │ ├── wrf_gamma.c │ │ └── wrf_lgamma.c │ ├── mathfp │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── e_acosh.c │ │ ├── e_atanh.c │ │ ├── e_hypot.c │ │ ├── e_j0.c │ │ ├── e_j1.c │ │ ├── e_remainder.c │ │ ├── e_scalb.c │ │ ├── ef_acosh.c │ │ ├── ef_atanh.c │ │ ├── ef_hypot.c │ │ ├── ef_j0.c │ │ ├── ef_j1.c │ │ ├── ef_remainder.c │ │ ├── ef_scalb.c │ │ ├── er_gamma.c │ │ ├── er_lgamma.c │ │ ├── erf_gamma.c │ │ ├── erf_lgamma.c │ │ ├── mathfp.tex │ │ ├── s_acos.c │ │ ├── s_asin.c │ │ ├── s_asine.c │ │ ├── s_asinh.c │ │ ├── s_atan.c │ │ ├── s_atan2.c │ │ ├── s_atangent.c │ │ ├── s_ceil.c │ │ ├── s_cos.c │ │ ├── s_cosh.c │ │ ├── s_erf.c │ │ ├── s_exp.c │ │ ├── s_exp2.c │ │ ├── s_fabs.c │ │ ├── s_floor.c │ │ ├── s_fmod.c │ │ ├── s_frexp.c │ │ ├── s_ispos.c │ │ ├── s_ldexp.c │ │ ├── s_log.c │ │ ├── s_log10.c │ │ ├── s_logarithm.c │ │ ├── s_mathcnst.c │ │ ├── s_numtest.c │ │ ├── s_pow.c │ │ ├── s_signif.c │ │ ├── s_sin.c │ │ ├── s_sincos.c │ │ ├── s_sine.c │ │ ├── s_sineh.c │ │ ├── s_sinf.c │ │ ├── s_sinh.c │ │ ├── s_sqrt.c │ │ ├── s_tan.c │ │ ├── s_tanh.c │ │ ├── s_tgamma.c │ │ ├── sf_acos.c │ │ ├── sf_asin.c │ │ ├── sf_asine.c │ │ ├── sf_asinh.c │ │ ├── sf_atan.c │ │ ├── sf_atan2.c │ │ ├── sf_atangent.c │ │ ├── sf_ceil.c │ │ ├── sf_cos.c │ │ ├── sf_cosh.c │ │ ├── sf_erf.c │ │ ├── sf_exp.c │ │ ├── sf_exp2.c │ │ ├── sf_fabs.c │ │ ├── sf_floor.c │ │ ├── sf_fmod.c │ │ ├── sf_frexp.c │ │ ├── sf_ispos.c │ │ ├── sf_ldexp.c │ │ ├── sf_log.c │ │ ├── sf_log10.c │ │ ├── sf_logarithm.c │ │ ├── sf_numtest.c │ │ ├── sf_pow.c │ │ ├── sf_signif.c │ │ ├── sf_sin.c │ │ ├── sf_sincos.c │ │ ├── sf_sine.c │ │ ├── sf_sineh.c │ │ ├── sf_sinh.c │ │ ├── sf_sqrt.c │ │ ├── sf_tan.c │ │ ├── sf_tanh.c │ │ ├── sf_tgamma.c │ │ ├── w_cabs.c │ │ ├── w_drem.c │ │ ├── w_jn.c │ │ ├── wf_cabs.c │ │ ├── wf_drem.c │ │ ├── wf_jn.c │ │ └── zmath.h │ └── test │ │ ├── Makefile.in │ │ ├── acos_vec.c │ │ ├── acosf_vec.c │ │ ├── acosh_vec.c │ │ ├── acoshf_vec.c │ │ ├── asin_vec.c │ │ ├── asinf_vec.c │ │ ├── asinh_vec.c │ │ ├── asinhf_vec.c │ │ ├── atan2_vec.c │ │ ├── atan2f_vec.c │ │ ├── atan_vec.c │ │ ├── atanf_vec.c │ │ ├── atanh_vec.c │ │ ├── atanhf_vec.c │ │ ├── ceil_vec.c │ │ ├── ceilf_vec.c │ │ ├── conv_vec.c │ │ ├── convert.c │ │ ├── cos_vec.c │ │ ├── cosf_vec.c │ │ ├── cosh_vec.c │ │ ├── coshf_vec.c │ │ ├── dcvt.c │ │ ├── dvec.c │ │ ├── erf_vec.c │ │ ├── erfc_vec.c │ │ ├── erfcf_vec.c │ │ ├── erff_vec.c │ │ ├── exp_vec.c │ │ ├── expf_vec.c │ │ ├── fabs_vec.c │ │ ├── fabsf_vec.c │ │ ├── floor_vec.c │ │ ├── floorf_vec.c │ │ ├── fmod_vec.c │ │ ├── fmodf_vec.c │ │ ├── gamma_vec.c │ │ ├── gammaf_vec.c │ │ ├── hypot_vec.c │ │ ├── hypotf_vec.c │ │ ├── iconv_vec.c │ │ ├── j0_vec.c │ │ ├── j0f_vec.c │ │ ├── j1_vec.c │ │ ├── j1f_vec.c │ │ ├── jn_vec.c │ │ ├── jnf_vec.c │ │ ├── log10_vec.c │ │ ├── log10f_vec.c │ │ ├── log1p_vec.c │ │ ├── log1pf_vec.c │ │ ├── log2_vec.c │ │ ├── log2f_vec.c │ │ ├── log_vec.c │ │ ├── logf_vec.c │ │ ├── math.c │ │ ├── math2.c │ │ ├── sin_vec.c │ │ ├── sinf_vec.c │ │ ├── sinh_vec.c │ │ ├── sinhf_vec.c │ │ ├── sprint_ivec.c │ │ ├── sprint_vec.c │ │ ├── sqrt_vec.c │ │ ├── sqrtf_vec.c │ │ ├── string.c │ │ ├── tan_vec.c │ │ ├── tanf_vec.c │ │ ├── tanh_vec.c │ │ ├── tanhf_vec.c │ │ ├── test.c │ │ ├── test.h │ │ ├── test_ieee.c │ │ ├── test_is.c │ │ ├── y0_vec.c │ │ ├── y0f_vec.c │ │ ├── y1_vec.c │ │ ├── y1f_vec.c │ │ ├── yn_vec.c │ │ └── ynf_vec.c ├── newlib.hin ├── stamp-h.in └── testsuite │ ├── config │ └── default.exp │ ├── include │ └── check.h │ ├── lib │ ├── checkoutput.exp │ ├── flags.exp │ ├── newlib.exp │ └── passfail.exp │ ├── newlib.elix │ ├── elix.exp │ └── tmmap.c │ ├── newlib.iconv │ ├── iconv.exp │ ├── iconvjp.c │ ├── iconvnm.c │ └── iconvru.c │ ├── newlib.locale │ ├── UTF-8.c │ ├── UTF-8.exp │ └── locale.exp │ ├── newlib.search │ ├── hsearchtest.c │ └── hsearchtest.exp │ ├── newlib.stdio │ ├── stdio.exp │ └── swprintf.c │ ├── newlib.stdlib │ ├── atexit.c │ ├── atexit.exp │ ├── size_max.c │ └── stdlib.exp │ ├── newlib.string │ ├── memcpy-1.c │ ├── memmove1.c │ ├── strcmp-1.c │ ├── string.exp │ └── tstring.c │ └── newlib.wctype │ ├── tiswctype.c │ ├── twctrans.c │ ├── twctype.c │ └── wctype.exp ├── setup.com ├── src-release ├── symlink-tree ├── texinfo └── texinfo.tex └── ylwrap /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/.cvsignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /COPYING.LIBGLOSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/COPYING.LIBGLOSS -------------------------------------------------------------------------------- /COPYING.NEWLIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/COPYING.NEWLIB -------------------------------------------------------------------------------- /COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/COPYING3 -------------------------------------------------------------------------------- /COPYING3.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/COPYING3.LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/ChangeLog -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/Makefile.def -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/Makefile.in -------------------------------------------------------------------------------- /Makefile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/Makefile.tpl -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/README -------------------------------------------------------------------------------- /README-maintainer-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/README-maintainer-mode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/README.md -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/compile -------------------------------------------------------------------------------- /config-ml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config-ml.in -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config.guess -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config.rpath -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config.sub -------------------------------------------------------------------------------- /config/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/ChangeLog -------------------------------------------------------------------------------- /config/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/acinclude.m4 -------------------------------------------------------------------------------- /config/acx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/acx.m4 -------------------------------------------------------------------------------- /config/asmcfi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/asmcfi.m4 -------------------------------------------------------------------------------- /config/bootstrap-O1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/bootstrap-O1.mk -------------------------------------------------------------------------------- /config/bootstrap-O3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/bootstrap-O3.mk -------------------------------------------------------------------------------- /config/bootstrap-asan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/bootstrap-asan.mk -------------------------------------------------------------------------------- /config/bootstrap-lto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/bootstrap-lto.mk -------------------------------------------------------------------------------- /config/bootstrap-time.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/bootstrap-time.mk -------------------------------------------------------------------------------- /config/cloog.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/cloog.m4 -------------------------------------------------------------------------------- /config/codeset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/codeset.m4 -------------------------------------------------------------------------------- /config/depstand.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/depstand.m4 -------------------------------------------------------------------------------- /config/dfp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/dfp.m4 -------------------------------------------------------------------------------- /config/elf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/elf.m4 -------------------------------------------------------------------------------- /config/enable.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/enable.m4 -------------------------------------------------------------------------------- /config/extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/extensions.m4 -------------------------------------------------------------------------------- /config/futex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/futex.m4 -------------------------------------------------------------------------------- /config/gc++filt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/gc++filt.m4 -------------------------------------------------------------------------------- /config/gettext-sister.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/gettext-sister.m4 -------------------------------------------------------------------------------- /config/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/gettext.m4 -------------------------------------------------------------------------------- /config/glibc21.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/glibc21.m4 -------------------------------------------------------------------------------- /config/gthr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/gthr.m4 -------------------------------------------------------------------------------- /config/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/iconv.m4 -------------------------------------------------------------------------------- /config/intdiv0.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/intdiv0.m4 -------------------------------------------------------------------------------- /config/inttypes-pri.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/inttypes-pri.m4 -------------------------------------------------------------------------------- /config/inttypes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/inttypes.m4 -------------------------------------------------------------------------------- /config/inttypes_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/inttypes_h.m4 -------------------------------------------------------------------------------- /config/isl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/isl.m4 -------------------------------------------------------------------------------- /config/largefile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/largefile.m4 -------------------------------------------------------------------------------- /config/lcmessage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/lcmessage.m4 -------------------------------------------------------------------------------- /config/ld-symbolic.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/ld-symbolic.m4 -------------------------------------------------------------------------------- /config/lead-dot.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/lead-dot.m4 -------------------------------------------------------------------------------- /config/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/lib-ld.m4 -------------------------------------------------------------------------------- /config/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/lib-link.m4 -------------------------------------------------------------------------------- /config/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/lib-prefix.m4 -------------------------------------------------------------------------------- /config/lthostflags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/lthostflags.m4 -------------------------------------------------------------------------------- /config/math.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/math.m4 -------------------------------------------------------------------------------- /config/mh-cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mh-cygwin -------------------------------------------------------------------------------- /config/mh-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mh-darwin -------------------------------------------------------------------------------- /config/mh-djgpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mh-djgpp -------------------------------------------------------------------------------- /config/mh-mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mh-mingw -------------------------------------------------------------------------------- /config/mh-pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mh-pa -------------------------------------------------------------------------------- /config/mh-pa-hpux10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mh-pa-hpux10 -------------------------------------------------------------------------------- /config/mh-ppc-aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mh-ppc-aix -------------------------------------------------------------------------------- /config/mmap.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mmap.m4 -------------------------------------------------------------------------------- /config/mt-alphaieee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mt-alphaieee -------------------------------------------------------------------------------- /config/mt-d30v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mt-d30v -------------------------------------------------------------------------------- /config/mt-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mt-gnu -------------------------------------------------------------------------------- /config/mt-mips-elfoabi: -------------------------------------------------------------------------------- 1 | include $(srcdir)/config/mt-mips16-compat 2 | -------------------------------------------------------------------------------- /config/mt-mips-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mt-mips-gnu -------------------------------------------------------------------------------- /config/mt-mips16-compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mt-mips16-compat -------------------------------------------------------------------------------- /config/mt-ospace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mt-ospace -------------------------------------------------------------------------------- /config/mt-sde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mt-sde -------------------------------------------------------------------------------- /config/mt-spu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/mt-spu -------------------------------------------------------------------------------- /config/multi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/multi.m4 -------------------------------------------------------------------------------- /config/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/nls.m4 -------------------------------------------------------------------------------- /config/no-executables.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/no-executables.m4 -------------------------------------------------------------------------------- /config/override.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/override.m4 -------------------------------------------------------------------------------- /config/picflag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/picflag.m4 -------------------------------------------------------------------------------- /config/plugins.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/plugins.m4 -------------------------------------------------------------------------------- /config/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/po.m4 -------------------------------------------------------------------------------- /config/proginstall.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/proginstall.m4 -------------------------------------------------------------------------------- /config/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/progtest.m4 -------------------------------------------------------------------------------- /config/stdint.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/stdint.m4 -------------------------------------------------------------------------------- /config/stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/stdint_h.m4 -------------------------------------------------------------------------------- /config/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/tcl.m4 -------------------------------------------------------------------------------- /config/tls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/tls.m4 -------------------------------------------------------------------------------- /config/uintmax_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/uintmax_t.m4 -------------------------------------------------------------------------------- /config/ulonglong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/ulonglong.m4 -------------------------------------------------------------------------------- /config/unwind_ipinfo.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/unwind_ipinfo.m4 -------------------------------------------------------------------------------- /config/warnings.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/warnings.m4 -------------------------------------------------------------------------------- /config/weakref.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/weakref.m4 -------------------------------------------------------------------------------- /config/zlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/config/zlib.m4 -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/depcomp -------------------------------------------------------------------------------- /djunpack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/djunpack.bat -------------------------------------------------------------------------------- /etc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/ChangeLog -------------------------------------------------------------------------------- /etc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/Makefile.in -------------------------------------------------------------------------------- /etc/add-log.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/add-log.el -------------------------------------------------------------------------------- /etc/add-log.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/add-log.vi -------------------------------------------------------------------------------- /etc/configbuild.ein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configbuild.ein -------------------------------------------------------------------------------- /etc/configbuild.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configbuild.fig -------------------------------------------------------------------------------- /etc/configbuild.jin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configbuild.jin -------------------------------------------------------------------------------- /etc/configbuild.tin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configbuild.tin -------------------------------------------------------------------------------- /etc/configdev.ein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configdev.ein -------------------------------------------------------------------------------- /etc/configdev.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configdev.fig -------------------------------------------------------------------------------- /etc/configdev.jin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configdev.jin -------------------------------------------------------------------------------- /etc/configdev.tin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configdev.tin -------------------------------------------------------------------------------- /etc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configure -------------------------------------------------------------------------------- /etc/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configure.in -------------------------------------------------------------------------------- /etc/configure.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/configure.texi -------------------------------------------------------------------------------- /etc/fdl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/fdl.texi -------------------------------------------------------------------------------- /etc/gnu-oids.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/gnu-oids.texi -------------------------------------------------------------------------------- /etc/make-stds.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/make-stds.texi -------------------------------------------------------------------------------- /etc/standards.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/standards.texi -------------------------------------------------------------------------------- /etc/texi2pod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/etc/texi2pod.pl -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/install-sh -------------------------------------------------------------------------------- /libgloss/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/ChangeLog -------------------------------------------------------------------------------- /libgloss/ChangeLog.nano: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/ChangeLog.nano -------------------------------------------------------------------------------- /libgloss/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/Makefile.in -------------------------------------------------------------------------------- /libgloss/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/README -------------------------------------------------------------------------------- /libgloss/aarch64/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/aarch64/_exit.c -------------------------------------------------------------------------------- /libgloss/aarch64/_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/aarch64/_kill.c -------------------------------------------------------------------------------- /libgloss/aarch64/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/aarch64/crt0.S -------------------------------------------------------------------------------- /libgloss/aarch64/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/aarch64/svc.h -------------------------------------------------------------------------------- /libgloss/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/acinclude.m4 -------------------------------------------------------------------------------- /libgloss/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/arm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/Makefile.in -------------------------------------------------------------------------------- /libgloss/arm/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/_exit.c -------------------------------------------------------------------------------- /libgloss/arm/_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/_kill.c -------------------------------------------------------------------------------- /libgloss/arm/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/arm/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/arm.h -------------------------------------------------------------------------------- /libgloss/arm/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/configure -------------------------------------------------------------------------------- /libgloss/arm/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/crt0.S -------------------------------------------------------------------------------- /libgloss/arm/ftruncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/ftruncate.c -------------------------------------------------------------------------------- /libgloss/arm/libcfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/libcfunc.c -------------------------------------------------------------------------------- /libgloss/arm/swi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/swi.h -------------------------------------------------------------------------------- /libgloss/arm/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/syscall.h -------------------------------------------------------------------------------- /libgloss/arm/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/syscalls.c -------------------------------------------------------------------------------- /libgloss/arm/trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/trap.S -------------------------------------------------------------------------------- /libgloss/arm/truncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/arm/truncate.c -------------------------------------------------------------------------------- /libgloss/bfin/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/_exit.c -------------------------------------------------------------------------------- /libgloss/bfin/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/bfin/basiccrt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/basiccrt.S -------------------------------------------------------------------------------- /libgloss/bfin/bf504.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf504.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf506.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf506.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf512.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf514.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf514.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf516.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf516.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf518.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf518.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf522.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf522.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf523.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf523.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf524.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf524.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf525.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf525.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf526.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf526.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf527.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf527.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf531.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf531.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf532.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf532.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf533.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf533.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf534.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf534.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf536.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf536.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf537.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf537.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf538.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf538.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf539.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf539.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf542.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf542.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf544.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf544.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf547.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf547.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf548.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf548.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf549.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf549.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf561.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf561.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf561a.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf561a.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf561b.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf561b.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf561m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf561m.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf592.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf592.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf606.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf606.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf606c0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf606c0.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf606c1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf606c1.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf606m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf606m.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf607.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf607.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf607c0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf607c0.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf607c1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf607c1.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf607m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf607m.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf608.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf608.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf608c0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf608c0.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf608c1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf608c1.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf608m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf608m.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf609.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf609.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf609c0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf609c0.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf609c1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf609c1.ld -------------------------------------------------------------------------------- /libgloss/bfin/bf609m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/bf609m.ld -------------------------------------------------------------------------------- /libgloss/bfin/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/configure -------------------------------------------------------------------------------- /libgloss/bfin/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/crt0.S -------------------------------------------------------------------------------- /libgloss/bfin/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/bfin/syscalls.c -------------------------------------------------------------------------------- /libgloss/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/close.c -------------------------------------------------------------------------------- /libgloss/config/dos.mh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/config/dos.mh -------------------------------------------------------------------------------- /libgloss/config/mips.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/config/mips.mt -------------------------------------------------------------------------------- /libgloss/config/ppc.mh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/config/ppc.mh -------------------------------------------------------------------------------- /libgloss/config/xc16x.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/config/xc16x.mt -------------------------------------------------------------------------------- /libgloss/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/configure -------------------------------------------------------------------------------- /libgloss/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/configure.in -------------------------------------------------------------------------------- /libgloss/cr16/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/_exit.c -------------------------------------------------------------------------------- /libgloss/cr16/_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/_getenv.c -------------------------------------------------------------------------------- /libgloss/cr16/_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/_rename.c -------------------------------------------------------------------------------- /libgloss/cr16/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/cr16/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/close.c -------------------------------------------------------------------------------- /libgloss/cr16/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/configure -------------------------------------------------------------------------------- /libgloss/cr16/crt1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/crt1.S -------------------------------------------------------------------------------- /libgloss/cr16/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/crti.S -------------------------------------------------------------------------------- /libgloss/cr16/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/crtn.S -------------------------------------------------------------------------------- /libgloss/cr16/dvz_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/dvz_hndl.c -------------------------------------------------------------------------------- /libgloss/cr16/flg_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/flg_hndl.c -------------------------------------------------------------------------------- /libgloss/cr16/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/fstat.c -------------------------------------------------------------------------------- /libgloss/cr16/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/getpid.c -------------------------------------------------------------------------------- /libgloss/cr16/iad_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/iad_hndl.c -------------------------------------------------------------------------------- /libgloss/cr16/intable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/intable.c -------------------------------------------------------------------------------- /libgloss/cr16/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/isatty.c -------------------------------------------------------------------------------- /libgloss/cr16/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/kill.c -------------------------------------------------------------------------------- /libgloss/cr16/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/lseek.c -------------------------------------------------------------------------------- /libgloss/cr16/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/open.c -------------------------------------------------------------------------------- /libgloss/cr16/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/putnum.c -------------------------------------------------------------------------------- /libgloss/cr16/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/read.c -------------------------------------------------------------------------------- /libgloss/cr16/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/sbrk.c -------------------------------------------------------------------------------- /libgloss/cr16/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/sim.ld -------------------------------------------------------------------------------- /libgloss/cr16/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/stat.c -------------------------------------------------------------------------------- /libgloss/cr16/svc_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/svc_hndl.c -------------------------------------------------------------------------------- /libgloss/cr16/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/time.c -------------------------------------------------------------------------------- /libgloss/cr16/und_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/und_hndl.c -------------------------------------------------------------------------------- /libgloss/cr16/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/unlink.c -------------------------------------------------------------------------------- /libgloss/cr16/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cr16/write.c -------------------------------------------------------------------------------- /libgloss/cris/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cris/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/cris/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cris/configure -------------------------------------------------------------------------------- /libgloss/cris/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cris/crt0.S -------------------------------------------------------------------------------- /libgloss/cris/crti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cris/crti.c -------------------------------------------------------------------------------- /libgloss/cris/crtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cris/crtn.c -------------------------------------------------------------------------------- /libgloss/cris/irqtable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cris/irqtable.S -------------------------------------------------------------------------------- /libgloss/cris/lcrt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cris/lcrt0.c -------------------------------------------------------------------------------- /libgloss/cris/outbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cris/outbyte.c -------------------------------------------------------------------------------- /libgloss/cris/setup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/cris/setup.S -------------------------------------------------------------------------------- /libgloss/crx/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/Makefile.in -------------------------------------------------------------------------------- /libgloss/crx/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/_exit.c -------------------------------------------------------------------------------- /libgloss/crx/_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/_getenv.c -------------------------------------------------------------------------------- /libgloss/crx/_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/_rename.c -------------------------------------------------------------------------------- /libgloss/crx/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/crx/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/close.c -------------------------------------------------------------------------------- /libgloss/crx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/configure -------------------------------------------------------------------------------- /libgloss/crx/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/crt0.S -------------------------------------------------------------------------------- /libgloss/crx/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/crti.S -------------------------------------------------------------------------------- /libgloss/crx/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/crtn.S -------------------------------------------------------------------------------- /libgloss/crx/dvz_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/dvz_hndl.c -------------------------------------------------------------------------------- /libgloss/crx/flg_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/flg_hndl.c -------------------------------------------------------------------------------- /libgloss/crx/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/fstat.c -------------------------------------------------------------------------------- /libgloss/crx/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/getpid.c -------------------------------------------------------------------------------- /libgloss/crx/iad_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/iad_hndl.c -------------------------------------------------------------------------------- /libgloss/crx/intable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/intable.c -------------------------------------------------------------------------------- /libgloss/crx/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/isatty.c -------------------------------------------------------------------------------- /libgloss/crx/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/kill.c -------------------------------------------------------------------------------- /libgloss/crx/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/lseek.c -------------------------------------------------------------------------------- /libgloss/crx/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/open.c -------------------------------------------------------------------------------- /libgloss/crx/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/putnum.c -------------------------------------------------------------------------------- /libgloss/crx/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/read.c -------------------------------------------------------------------------------- /libgloss/crx/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/sbrk.c -------------------------------------------------------------------------------- /libgloss/crx/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/sim.ld -------------------------------------------------------------------------------- /libgloss/crx/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/stat.c -------------------------------------------------------------------------------- /libgloss/crx/svc_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/svc_hndl.c -------------------------------------------------------------------------------- /libgloss/crx/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/time.c -------------------------------------------------------------------------------- /libgloss/crx/und_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/und_hndl.c -------------------------------------------------------------------------------- /libgloss/crx/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/unlink.c -------------------------------------------------------------------------------- /libgloss/crx/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/crx/write.c -------------------------------------------------------------------------------- /libgloss/d30v/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/d30v/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/d30v/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/d30v/configure -------------------------------------------------------------------------------- /libgloss/d30v/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/d30v/crt0.S -------------------------------------------------------------------------------- /libgloss/d30v/inbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/d30v/inbyte.c -------------------------------------------------------------------------------- /libgloss/d30v/outbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/d30v/outbyte.c -------------------------------------------------------------------------------- /libgloss/d30v/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/d30v/syscalls.c -------------------------------------------------------------------------------- /libgloss/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/debug.c -------------------------------------------------------------------------------- /libgloss/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/debug.h -------------------------------------------------------------------------------- /libgloss/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/doc/Makefile.in -------------------------------------------------------------------------------- /libgloss/doc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/doc/configure -------------------------------------------------------------------------------- /libgloss/epiphany/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/epiphany/crt0.S -------------------------------------------------------------------------------- /libgloss/epiphany/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/epiphany/fork.c -------------------------------------------------------------------------------- /libgloss/epiphany/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/epiphany/kill.c -------------------------------------------------------------------------------- /libgloss/epiphany/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/epiphany/link.c -------------------------------------------------------------------------------- /libgloss/epiphany/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/epiphany/open.c -------------------------------------------------------------------------------- /libgloss/epiphany/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/epiphany/read.c -------------------------------------------------------------------------------- /libgloss/epiphany/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/epiphany/sbrk.c -------------------------------------------------------------------------------- /libgloss/epiphany/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/epiphany/stat.c -------------------------------------------------------------------------------- /libgloss/epiphany/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/epiphany/wait.c -------------------------------------------------------------------------------- /libgloss/fr30/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/fr30/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/fr30/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/fr30/configure -------------------------------------------------------------------------------- /libgloss/fr30/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/fr30/crt0.s -------------------------------------------------------------------------------- /libgloss/fr30/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/fr30/syscalls.c -------------------------------------------------------------------------------- /libgloss/frv/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/Makefile.in -------------------------------------------------------------------------------- /libgloss/frv/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/frv/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/configure -------------------------------------------------------------------------------- /libgloss/frv/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/crt0.S -------------------------------------------------------------------------------- /libgloss/frv/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/fstat.c -------------------------------------------------------------------------------- /libgloss/frv/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/getpid.c -------------------------------------------------------------------------------- /libgloss/frv/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/isatty.c -------------------------------------------------------------------------------- /libgloss/frv/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/kill.c -------------------------------------------------------------------------------- /libgloss/frv/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/print.c -------------------------------------------------------------------------------- /libgloss/frv/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/putnum.c -------------------------------------------------------------------------------- /libgloss/frv/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/sbrk.c -------------------------------------------------------------------------------- /libgloss/frv/sim-close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/sim-close.S -------------------------------------------------------------------------------- /libgloss/frv/sim-exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/sim-exit.S -------------------------------------------------------------------------------- /libgloss/frv/sim-lseek.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/sim-lseek.S -------------------------------------------------------------------------------- /libgloss/frv/sim-open.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/sim-open.S -------------------------------------------------------------------------------- /libgloss/frv/sim-read.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/sim-read.S -------------------------------------------------------------------------------- /libgloss/frv/sim-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/sim-time.c -------------------------------------------------------------------------------- /libgloss/frv/sim-write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/sim-write.S -------------------------------------------------------------------------------- /libgloss/frv/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/frv/stat.c -------------------------------------------------------------------------------- /libgloss/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/fstat.c -------------------------------------------------------------------------------- /libgloss/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/getpid.c -------------------------------------------------------------------------------- /libgloss/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/glue.h -------------------------------------------------------------------------------- /libgloss/hp74x/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/hp74x/README -------------------------------------------------------------------------------- /libgloss/hp74x/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/hp74x/configure -------------------------------------------------------------------------------- /libgloss/hp74x/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/hp74x/crt0.s -------------------------------------------------------------------------------- /libgloss/hp74x/hppa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/hp74x/hppa.ld -------------------------------------------------------------------------------- /libgloss/hp74x/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/hp74x/io.c -------------------------------------------------------------------------------- /libgloss/hp74x/pa_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/hp74x/pa_stub.c -------------------------------------------------------------------------------- /libgloss/hp74x/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/hp74x/test.c -------------------------------------------------------------------------------- /libgloss/i386/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i386/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/i386/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i386/configure -------------------------------------------------------------------------------- /libgloss/i386/cygmon.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i386/cygmon.ld -------------------------------------------------------------------------------- /libgloss/i960/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i960/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/i960/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i960/asm.h -------------------------------------------------------------------------------- /libgloss/i960/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i960/configure -------------------------------------------------------------------------------- /libgloss/i960/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i960/crt0.c -------------------------------------------------------------------------------- /libgloss/i960/mon-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i960/mon-read.c -------------------------------------------------------------------------------- /libgloss/i960/mon960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i960/mon960.c -------------------------------------------------------------------------------- /libgloss/i960/mon960.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i960/mon960.ld -------------------------------------------------------------------------------- /libgloss/i960/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/i960/syscall.h -------------------------------------------------------------------------------- /libgloss/iq2000/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/_exit.c -------------------------------------------------------------------------------- /libgloss/iq2000/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/access.c -------------------------------------------------------------------------------- /libgloss/iq2000/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/chmod.c -------------------------------------------------------------------------------- /libgloss/iq2000/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/chown.c -------------------------------------------------------------------------------- /libgloss/iq2000/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/close.c -------------------------------------------------------------------------------- /libgloss/iq2000/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/creat.c -------------------------------------------------------------------------------- /libgloss/iq2000/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/crt0.S -------------------------------------------------------------------------------- /libgloss/iq2000/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/crt1.c -------------------------------------------------------------------------------- /libgloss/iq2000/execv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/execv.c -------------------------------------------------------------------------------- /libgloss/iq2000/execve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/execve.c -------------------------------------------------------------------------------- /libgloss/iq2000/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/fork.c -------------------------------------------------------------------------------- /libgloss/iq2000/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/fstat.c -------------------------------------------------------------------------------- /libgloss/iq2000/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/getpid.c -------------------------------------------------------------------------------- /libgloss/iq2000/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/isatty.c -------------------------------------------------------------------------------- /libgloss/iq2000/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/kill.c -------------------------------------------------------------------------------- /libgloss/iq2000/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/lseek.c -------------------------------------------------------------------------------- /libgloss/iq2000/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/open.c -------------------------------------------------------------------------------- /libgloss/iq2000/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/pipe.c -------------------------------------------------------------------------------- /libgloss/iq2000/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/read.c -------------------------------------------------------------------------------- /libgloss/iq2000/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/sbrk.c -------------------------------------------------------------------------------- /libgloss/iq2000/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/sim.ld -------------------------------------------------------------------------------- /libgloss/iq2000/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/stat.c -------------------------------------------------------------------------------- /libgloss/iq2000/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/test.c -------------------------------------------------------------------------------- /libgloss/iq2000/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/time.c -------------------------------------------------------------------------------- /libgloss/iq2000/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/times.c -------------------------------------------------------------------------------- /libgloss/iq2000/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/trap.c -------------------------------------------------------------------------------- /libgloss/iq2000/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/trap.h -------------------------------------------------------------------------------- /libgloss/iq2000/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/unlink.c -------------------------------------------------------------------------------- /libgloss/iq2000/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/utime.c -------------------------------------------------------------------------------- /libgloss/iq2000/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/wait.c -------------------------------------------------------------------------------- /libgloss/iq2000/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/iq2000/write.c -------------------------------------------------------------------------------- /libgloss/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/isatty.c -------------------------------------------------------------------------------- /libgloss/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/kill.c -------------------------------------------------------------------------------- /libgloss/libnosys/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/libnosys/fork.c -------------------------------------------------------------------------------- /libgloss/libnosys/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/libnosys/kill.c -------------------------------------------------------------------------------- /libgloss/libnosys/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/libnosys/link.c -------------------------------------------------------------------------------- /libgloss/libnosys/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/libnosys/open.c -------------------------------------------------------------------------------- /libgloss/libnosys/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/libnosys/read.c -------------------------------------------------------------------------------- /libgloss/libnosys/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/libnosys/sbrk.c -------------------------------------------------------------------------------- /libgloss/libnosys/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/libnosys/stat.c -------------------------------------------------------------------------------- /libgloss/libnosys/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/libnosys/wait.c -------------------------------------------------------------------------------- /libgloss/lm32/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/lm32/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/lm32/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/lm32/configure -------------------------------------------------------------------------------- /libgloss/lm32/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/lm32/crt0.S -------------------------------------------------------------------------------- /libgloss/lm32/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/lm32/isatty.c -------------------------------------------------------------------------------- /libgloss/lm32/scall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/lm32/scall.S -------------------------------------------------------------------------------- /libgloss/lm32/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/lm32/sim.ld -------------------------------------------------------------------------------- /libgloss/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/lseek.c -------------------------------------------------------------------------------- /libgloss/m32c/abort.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/abort.S -------------------------------------------------------------------------------- /libgloss/m32c/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/m32c/argv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/argv.S -------------------------------------------------------------------------------- /libgloss/m32c/argvlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/argvlen.S -------------------------------------------------------------------------------- /libgloss/m32c/chdir.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/chdir.S -------------------------------------------------------------------------------- /libgloss/m32c/chmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/chmod.S -------------------------------------------------------------------------------- /libgloss/m32c/close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/close.S -------------------------------------------------------------------------------- /libgloss/m32c/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/configure -------------------------------------------------------------------------------- /libgloss/m32c/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/crt0.S -------------------------------------------------------------------------------- /libgloss/m32c/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/crtn.S -------------------------------------------------------------------------------- /libgloss/m32c/exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/exit.S -------------------------------------------------------------------------------- /libgloss/m32c/fstat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/fstat.S -------------------------------------------------------------------------------- /libgloss/m32c/genscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/genscript -------------------------------------------------------------------------------- /libgloss/m32c/getpid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/getpid.S -------------------------------------------------------------------------------- /libgloss/m32c/heaptop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/heaptop.S -------------------------------------------------------------------------------- /libgloss/m32c/isatty.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/isatty.S -------------------------------------------------------------------------------- /libgloss/m32c/kill.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/kill.S -------------------------------------------------------------------------------- /libgloss/m32c/link.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/link.S -------------------------------------------------------------------------------- /libgloss/m32c/lseek.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/lseek.S -------------------------------------------------------------------------------- /libgloss/m32c/m32c.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/m32c.tmpl -------------------------------------------------------------------------------- /libgloss/m32c/m32csys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/m32csys.h -------------------------------------------------------------------------------- /libgloss/m32c/open.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/open.S -------------------------------------------------------------------------------- /libgloss/m32c/read.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/read.S -------------------------------------------------------------------------------- /libgloss/m32c/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/sample.c -------------------------------------------------------------------------------- /libgloss/m32c/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/sbrk.c -------------------------------------------------------------------------------- /libgloss/m32c/stat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/stat.S -------------------------------------------------------------------------------- /libgloss/m32c/time.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/time.S -------------------------------------------------------------------------------- /libgloss/m32c/times.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/times.S -------------------------------------------------------------------------------- /libgloss/m32c/unlink.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/unlink.S -------------------------------------------------------------------------------- /libgloss/m32c/utime.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/utime.S -------------------------------------------------------------------------------- /libgloss/m32c/varvects.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/varvects.S -------------------------------------------------------------------------------- /libgloss/m32c/varvects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/varvects.h -------------------------------------------------------------------------------- /libgloss/m32c/write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32c/write.S -------------------------------------------------------------------------------- /libgloss/m32r/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/m32r/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/chmod.c -------------------------------------------------------------------------------- /libgloss/m32r/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/close.c -------------------------------------------------------------------------------- /libgloss/m32r/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/configure -------------------------------------------------------------------------------- /libgloss/m32r/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/crt0.S -------------------------------------------------------------------------------- /libgloss/m32r/eit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/eit.h -------------------------------------------------------------------------------- /libgloss/m32r/eva.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/eva.ld -------------------------------------------------------------------------------- /libgloss/m32r/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/exit.c -------------------------------------------------------------------------------- /libgloss/m32r/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/fstat.c -------------------------------------------------------------------------------- /libgloss/m32r/getpid.c: -------------------------------------------------------------------------------- 1 | 2 | int 3 | _getpid (int n) 4 | { 5 | return 1; 6 | } 7 | -------------------------------------------------------------------------------- /libgloss/m32r/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/isatty.c -------------------------------------------------------------------------------- /libgloss/m32r/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/kill.c -------------------------------------------------------------------------------- /libgloss/m32r/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/lseek.c -------------------------------------------------------------------------------- /libgloss/m32r/m32r-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/m32r-lib.c -------------------------------------------------------------------------------- /libgloss/m32r/mon.specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/mon.specs -------------------------------------------------------------------------------- /libgloss/m32r/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/open.c -------------------------------------------------------------------------------- /libgloss/m32r/raise.c: -------------------------------------------------------------------------------- 1 | /* ??? Needed? */ 2 | 3 | _raise () 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /libgloss/m32r/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/read.c -------------------------------------------------------------------------------- /libgloss/m32r/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/sbrk.c -------------------------------------------------------------------------------- /libgloss/m32r/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/stat.c -------------------------------------------------------------------------------- /libgloss/m32r/trap0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/trap0.S -------------------------------------------------------------------------------- /libgloss/m32r/trapmon0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/trapmon0.c -------------------------------------------------------------------------------- /libgloss/m32r/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/unlink.c -------------------------------------------------------------------------------- /libgloss/m32r/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/utime.c -------------------------------------------------------------------------------- /libgloss/m32r/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m32r/write.c -------------------------------------------------------------------------------- /libgloss/m68hc11/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68hc11/crt0.S -------------------------------------------------------------------------------- /libgloss/m68k/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/README -------------------------------------------------------------------------------- /libgloss/m68k/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/m68k/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/asm.h -------------------------------------------------------------------------------- /libgloss/m68k/bcc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/bcc.ld -------------------------------------------------------------------------------- /libgloss/m68k/cf-crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/cf-crt0.S -------------------------------------------------------------------------------- /libgloss/m68k/cf-crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/cf-crt1.c -------------------------------------------------------------------------------- /libgloss/m68k/cf-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/cf-exit.c -------------------------------------------------------------------------------- /libgloss/m68k/cf-isrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/cf-isrs.c -------------------------------------------------------------------------------- /libgloss/m68k/cf-isv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/cf-isv.S -------------------------------------------------------------------------------- /libgloss/m68k/cf-sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/cf-sbrk.c -------------------------------------------------------------------------------- /libgloss/m68k/cf.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/cf.sc -------------------------------------------------------------------------------- /libgloss/m68k/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/configure -------------------------------------------------------------------------------- /libgloss/m68k/cpu32bug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/cpu32bug.S -------------------------------------------------------------------------------- /libgloss/m68k/cpu32bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/cpu32bug.h -------------------------------------------------------------------------------- /libgloss/m68k/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/crt0.S -------------------------------------------------------------------------------- /libgloss/m68k/dtor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/dtor.C -------------------------------------------------------------------------------- /libgloss/m68k/fido.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/fido.h -------------------------------------------------------------------------------- /libgloss/m68k/fido.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/fido.sc -------------------------------------------------------------------------------- /libgloss/m68k/idp.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/idp.ld -------------------------------------------------------------------------------- /libgloss/m68k/idpgdb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/idpgdb.ld -------------------------------------------------------------------------------- /libgloss/m68k/io-close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io-close.c -------------------------------------------------------------------------------- /libgloss/m68k/io-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io-exit.c -------------------------------------------------------------------------------- /libgloss/m68k/io-fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io-fstat.c -------------------------------------------------------------------------------- /libgloss/m68k/io-gdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io-gdb.c -------------------------------------------------------------------------------- /libgloss/m68k/io-lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io-lseek.c -------------------------------------------------------------------------------- /libgloss/m68k/io-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io-open.c -------------------------------------------------------------------------------- /libgloss/m68k/io-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io-read.c -------------------------------------------------------------------------------- /libgloss/m68k/io-stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io-stat.c -------------------------------------------------------------------------------- /libgloss/m68k/io-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io-time.c -------------------------------------------------------------------------------- /libgloss/m68k/io-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io-write.c -------------------------------------------------------------------------------- /libgloss/m68k/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/io.h -------------------------------------------------------------------------------- /libgloss/m68k/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/leds.c -------------------------------------------------------------------------------- /libgloss/m68k/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/leds.h -------------------------------------------------------------------------------- /libgloss/m68k/mc68ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/mc68ec.c -------------------------------------------------------------------------------- /libgloss/m68k/mvme.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/mvme.S -------------------------------------------------------------------------------- /libgloss/m68k/mvme135.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/mvme135.ld -------------------------------------------------------------------------------- /libgloss/m68k/mvme162.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/mvme162.ld -------------------------------------------------------------------------------- /libgloss/m68k/sbc5204.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/sbc5204.ld -------------------------------------------------------------------------------- /libgloss/m68k/sbc5206.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/sbc5206.ld -------------------------------------------------------------------------------- /libgloss/m68k/sim-crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/sim-crt0.S -------------------------------------------------------------------------------- /libgloss/m68k/sim-sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/sim-sbrk.c -------------------------------------------------------------------------------- /libgloss/m68k/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/sim.ld -------------------------------------------------------------------------------- /libgloss/m68k/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/m68k/test.c -------------------------------------------------------------------------------- /libgloss/mcore/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/close.c -------------------------------------------------------------------------------- /libgloss/mcore/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/configure -------------------------------------------------------------------------------- /libgloss/mcore/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/crt0.S -------------------------------------------------------------------------------- /libgloss/mcore/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/fstat.c -------------------------------------------------------------------------------- /libgloss/mcore/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/getpid.c -------------------------------------------------------------------------------- /libgloss/mcore/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/kill.c -------------------------------------------------------------------------------- /libgloss/mcore/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/lseek.c -------------------------------------------------------------------------------- /libgloss/mcore/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/open.c -------------------------------------------------------------------------------- /libgloss/mcore/pe-cmb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/pe-cmb.ld -------------------------------------------------------------------------------- /libgloss/mcore/pe-cmb.specs: -------------------------------------------------------------------------------- 1 | *endfile: 2 | -Tcmb.ld 3 | 4 | -------------------------------------------------------------------------------- /libgloss/mcore/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/print.c -------------------------------------------------------------------------------- /libgloss/mcore/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/putnum.c -------------------------------------------------------------------------------- /libgloss/mcore/raise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/raise.c -------------------------------------------------------------------------------- /libgloss/mcore/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/read.c -------------------------------------------------------------------------------- /libgloss/mcore/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/sbrk.c -------------------------------------------------------------------------------- /libgloss/mcore/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/stat.c -------------------------------------------------------------------------------- /libgloss/mcore/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/unlink.c -------------------------------------------------------------------------------- /libgloss/mcore/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mcore/write.c -------------------------------------------------------------------------------- /libgloss/mep/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/Makefile.in -------------------------------------------------------------------------------- /libgloss/mep/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/mep/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/configure -------------------------------------------------------------------------------- /libgloss/mep/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/crt0.S -------------------------------------------------------------------------------- /libgloss/mep/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/crtn.S -------------------------------------------------------------------------------- /libgloss/mep/default.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/default.ld -------------------------------------------------------------------------------- /libgloss/mep/fmax.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/fmax.ld -------------------------------------------------------------------------------- /libgloss/mep/gcov-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/gcov-io.h -------------------------------------------------------------------------------- /libgloss/mep/h_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/h_reset.c -------------------------------------------------------------------------------- /libgloss/mep/handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/handlers.c -------------------------------------------------------------------------------- /libgloss/mep/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/isatty.c -------------------------------------------------------------------------------- /libgloss/mep/mep-bb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/mep-bb.c -------------------------------------------------------------------------------- /libgloss/mep/mep-gmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/mep-gmon.c -------------------------------------------------------------------------------- /libgloss/mep/min.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/min.ld -------------------------------------------------------------------------------- /libgloss/mep/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/read.c -------------------------------------------------------------------------------- /libgloss/mep/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/sbrk.c -------------------------------------------------------------------------------- /libgloss/mep/sim-crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/sim-crt0.S -------------------------------------------------------------------------------- /libgloss/mep/sim-crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/sim-crtn.S -------------------------------------------------------------------------------- /libgloss/mep/simple.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/simple.ld -------------------------------------------------------------------------------- /libgloss/mep/syscalls.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/syscalls.S -------------------------------------------------------------------------------- /libgloss/mep/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mep/write.c -------------------------------------------------------------------------------- /libgloss/microblaze/linux-outbyte.c: -------------------------------------------------------------------------------- 1 | void outbyte (unsigned char c) 2 | { 3 | _write(1, &c, 1); 4 | } 5 | -------------------------------------------------------------------------------- /libgloss/mips/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/mips/array-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/array-io.c -------------------------------------------------------------------------------- /libgloss/mips/array.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/array.ld -------------------------------------------------------------------------------- /libgloss/mips/cfe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/cfe.c -------------------------------------------------------------------------------- /libgloss/mips/cfe.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/cfe.ld -------------------------------------------------------------------------------- /libgloss/mips/cfe_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/cfe_api.c -------------------------------------------------------------------------------- /libgloss/mips/cfe_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/cfe_api.h -------------------------------------------------------------------------------- /libgloss/mips/cfe_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/cfe_mem.c -------------------------------------------------------------------------------- /libgloss/mips/cma101.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/cma101.c -------------------------------------------------------------------------------- /libgloss/mips/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/configure -------------------------------------------------------------------------------- /libgloss/mips/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/crt0.S -------------------------------------------------------------------------------- /libgloss/mips/crt0_cfe.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/crt0_cfe.S -------------------------------------------------------------------------------- /libgloss/mips/cygmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/cygmon.c -------------------------------------------------------------------------------- /libgloss/mips/ddb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/ddb.ld -------------------------------------------------------------------------------- /libgloss/mips/dtor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/dtor.C -------------------------------------------------------------------------------- /libgloss/mips/dve.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/dve.ld -------------------------------------------------------------------------------- /libgloss/mips/dvemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/dvemon.c -------------------------------------------------------------------------------- /libgloss/mips/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/entry.S -------------------------------------------------------------------------------- /libgloss/mips/idt.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/idt.ld -------------------------------------------------------------------------------- /libgloss/mips/idt32.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/idt32.ld -------------------------------------------------------------------------------- /libgloss/mips/idt64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/idt64.ld -------------------------------------------------------------------------------- /libgloss/mips/idtmon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/idtmon.S -------------------------------------------------------------------------------- /libgloss/mips/lsi.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/lsi.ld -------------------------------------------------------------------------------- /libgloss/mips/lsipmon.S: -------------------------------------------------------------------------------- 1 | #define LSI 1 2 | #include "pmon.S" 3 | -------------------------------------------------------------------------------- /libgloss/mips/mti32.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/mti32.ld -------------------------------------------------------------------------------- /libgloss/mips/mti64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/mti64.ld -------------------------------------------------------------------------------- /libgloss/mips/nullmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/nullmon.c -------------------------------------------------------------------------------- /libgloss/mips/nullmon.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/nullmon.ld -------------------------------------------------------------------------------- /libgloss/mips/pmon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/pmon.S -------------------------------------------------------------------------------- /libgloss/mips/pmon.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/pmon.ld -------------------------------------------------------------------------------- /libgloss/mips/regs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/regs.S -------------------------------------------------------------------------------- /libgloss/mips/sde32.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/sde32.ld -------------------------------------------------------------------------------- /libgloss/mips/sde64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/sde64.ld -------------------------------------------------------------------------------- /libgloss/mips/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/syscalls.c -------------------------------------------------------------------------------- /libgloss/mips/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/test.c -------------------------------------------------------------------------------- /libgloss/mips/vr4300.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/vr4300.S -------------------------------------------------------------------------------- /libgloss/mips/vr5xxx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mips/vr5xxx.S -------------------------------------------------------------------------------- /libgloss/mn10200/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/_exit.c -------------------------------------------------------------------------------- /libgloss/mn10200/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/chmod.c -------------------------------------------------------------------------------- /libgloss/mn10200/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/chown.c -------------------------------------------------------------------------------- /libgloss/mn10200/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/close.c -------------------------------------------------------------------------------- /libgloss/mn10200/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/creat.c -------------------------------------------------------------------------------- /libgloss/mn10200/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/crt0.S -------------------------------------------------------------------------------- /libgloss/mn10200/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/crt1.c -------------------------------------------------------------------------------- /libgloss/mn10200/eval.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/eval.ld -------------------------------------------------------------------------------- /libgloss/mn10200/execv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/execv.c -------------------------------------------------------------------------------- /libgloss/mn10200/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/fork.c -------------------------------------------------------------------------------- /libgloss/mn10200/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/fstat.c -------------------------------------------------------------------------------- /libgloss/mn10200/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/kill.c -------------------------------------------------------------------------------- /libgloss/mn10200/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/lseek.c -------------------------------------------------------------------------------- /libgloss/mn10200/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/open.c -------------------------------------------------------------------------------- /libgloss/mn10200/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/pipe.c -------------------------------------------------------------------------------- /libgloss/mn10200/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/read.c -------------------------------------------------------------------------------- /libgloss/mn10200/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/sbrk.c -------------------------------------------------------------------------------- /libgloss/mn10200/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/sim.ld -------------------------------------------------------------------------------- /libgloss/mn10200/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/stat.c -------------------------------------------------------------------------------- /libgloss/mn10200/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/test.c -------------------------------------------------------------------------------- /libgloss/mn10200/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/time.c -------------------------------------------------------------------------------- /libgloss/mn10200/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/times.c -------------------------------------------------------------------------------- /libgloss/mn10200/trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/trap.S -------------------------------------------------------------------------------- /libgloss/mn10200/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/trap.h -------------------------------------------------------------------------------- /libgloss/mn10200/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/utime.c -------------------------------------------------------------------------------- /libgloss/mn10200/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/wait.c -------------------------------------------------------------------------------- /libgloss/mn10200/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10200/write.c -------------------------------------------------------------------------------- /libgloss/mn10300/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/_exit.c -------------------------------------------------------------------------------- /libgloss/mn10300/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/chmod.c -------------------------------------------------------------------------------- /libgloss/mn10300/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/chown.c -------------------------------------------------------------------------------- /libgloss/mn10300/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/close.c -------------------------------------------------------------------------------- /libgloss/mn10300/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/creat.c -------------------------------------------------------------------------------- /libgloss/mn10300/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/crt0.S -------------------------------------------------------------------------------- /libgloss/mn10300/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/crt1.c -------------------------------------------------------------------------------- /libgloss/mn10300/eval.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/eval.ld -------------------------------------------------------------------------------- /libgloss/mn10300/execv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/execv.c -------------------------------------------------------------------------------- /libgloss/mn10300/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/fork.c -------------------------------------------------------------------------------- /libgloss/mn10300/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/fstat.c -------------------------------------------------------------------------------- /libgloss/mn10300/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/kill.c -------------------------------------------------------------------------------- /libgloss/mn10300/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/lseek.c -------------------------------------------------------------------------------- /libgloss/mn10300/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/open.c -------------------------------------------------------------------------------- /libgloss/mn10300/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/pipe.c -------------------------------------------------------------------------------- /libgloss/mn10300/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/read.c -------------------------------------------------------------------------------- /libgloss/mn10300/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/sbrk.c -------------------------------------------------------------------------------- /libgloss/mn10300/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/sim.ld -------------------------------------------------------------------------------- /libgloss/mn10300/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/stat.c -------------------------------------------------------------------------------- /libgloss/mn10300/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/test.c -------------------------------------------------------------------------------- /libgloss/mn10300/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/time.c -------------------------------------------------------------------------------- /libgloss/mn10300/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/times.c -------------------------------------------------------------------------------- /libgloss/mn10300/trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/trap.S -------------------------------------------------------------------------------- /libgloss/mn10300/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/trap.h -------------------------------------------------------------------------------- /libgloss/mn10300/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/utime.c -------------------------------------------------------------------------------- /libgloss/mn10300/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/wait.c -------------------------------------------------------------------------------- /libgloss/mn10300/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mn10300/write.c -------------------------------------------------------------------------------- /libgloss/moxie/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/configure -------------------------------------------------------------------------------- /libgloss/moxie/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/crt0.S -------------------------------------------------------------------------------- /libgloss/moxie/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/fstat.c -------------------------------------------------------------------------------- /libgloss/moxie/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/getpid.c -------------------------------------------------------------------------------- /libgloss/moxie/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/isatty.c -------------------------------------------------------------------------------- /libgloss/moxie/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/kill.c -------------------------------------------------------------------------------- /libgloss/moxie/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/print.c -------------------------------------------------------------------------------- /libgloss/moxie/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/putnum.c -------------------------------------------------------------------------------- /libgloss/moxie/qemu.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/qemu.ld -------------------------------------------------------------------------------- /libgloss/moxie/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/sbrk.c -------------------------------------------------------------------------------- /libgloss/moxie/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/sim.ld -------------------------------------------------------------------------------- /libgloss/moxie/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/moxie/stat.c -------------------------------------------------------------------------------- /libgloss/msp430/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/msp430/cio.c -------------------------------------------------------------------------------- /libgloss/msp430/cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/msp430/cio.h -------------------------------------------------------------------------------- /libgloss/msp430/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/msp430/crt0.S -------------------------------------------------------------------------------- /libgloss/msp430/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/msp430/crtn.S -------------------------------------------------------------------------------- /libgloss/msp430/gcrt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/msp430/gcrt0.S -------------------------------------------------------------------------------- /libgloss/msp430/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/msp430/sbrk.c -------------------------------------------------------------------------------- /libgloss/msp430/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/msp430/write.c -------------------------------------------------------------------------------- /libgloss/mt/16-002.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/16-002.ld -------------------------------------------------------------------------------- /libgloss/mt/16-003.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/16-003.ld -------------------------------------------------------------------------------- /libgloss/mt/64-001.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/64-001.ld -------------------------------------------------------------------------------- /libgloss/mt/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/Makefile.in -------------------------------------------------------------------------------- /libgloss/mt/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/access.c -------------------------------------------------------------------------------- /libgloss/mt/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/mt/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/chmod.c -------------------------------------------------------------------------------- /libgloss/mt/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/close.c -------------------------------------------------------------------------------- /libgloss/mt/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/configure -------------------------------------------------------------------------------- /libgloss/mt/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/configure.in -------------------------------------------------------------------------------- /libgloss/mt/crt0-ms2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/crt0-ms2.S -------------------------------------------------------------------------------- /libgloss/mt/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/crt0.S -------------------------------------------------------------------------------- /libgloss/mt/exit-ms2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/exit-ms2.c -------------------------------------------------------------------------------- /libgloss/mt/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/exit.c -------------------------------------------------------------------------------- /libgloss/mt/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/fstat.c -------------------------------------------------------------------------------- /libgloss/mt/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/getpid.c -------------------------------------------------------------------------------- /libgloss/mt/gettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/gettime.c -------------------------------------------------------------------------------- /libgloss/mt/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/isatty.c -------------------------------------------------------------------------------- /libgloss/mt/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/kill.c -------------------------------------------------------------------------------- /libgloss/mt/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/lseek.c -------------------------------------------------------------------------------- /libgloss/mt/ms2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/ms2.ld -------------------------------------------------------------------------------- /libgloss/mt/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/open.c -------------------------------------------------------------------------------- /libgloss/mt/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/read.c -------------------------------------------------------------------------------- /libgloss/mt/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/sbrk.c -------------------------------------------------------------------------------- /libgloss/mt/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/stat.c -------------------------------------------------------------------------------- /libgloss/mt/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/time.c -------------------------------------------------------------------------------- /libgloss/mt/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/times.c -------------------------------------------------------------------------------- /libgloss/mt/trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/trap.S -------------------------------------------------------------------------------- /libgloss/mt/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/trap.h -------------------------------------------------------------------------------- /libgloss/mt/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/unlink.c -------------------------------------------------------------------------------- /libgloss/mt/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/utime.c -------------------------------------------------------------------------------- /libgloss/mt/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/mt/write.c -------------------------------------------------------------------------------- /libgloss/nds32/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/nds32/configure -------------------------------------------------------------------------------- /libgloss/nds32/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/nds32/crt0.S -------------------------------------------------------------------------------- /libgloss/nds32/crt1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/nds32/crt1.S -------------------------------------------------------------------------------- /libgloss/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/open.c -------------------------------------------------------------------------------- /libgloss/pa/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/Makefile.in -------------------------------------------------------------------------------- /libgloss/pa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/README -------------------------------------------------------------------------------- /libgloss/pa/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/aclocal.m4 -------------------------------------------------------------------------------- /libgloss/pa/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/configure -------------------------------------------------------------------------------- /libgloss/pa/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/configure.in -------------------------------------------------------------------------------- /libgloss/pa/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/crt0.S -------------------------------------------------------------------------------- /libgloss/pa/hp-milli.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/hp-milli.s -------------------------------------------------------------------------------- /libgloss/pa/op50n-io.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/op50n-io.S -------------------------------------------------------------------------------- /libgloss/pa/op50n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/op50n.h -------------------------------------------------------------------------------- /libgloss/pa/op50n.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/op50n.ld -------------------------------------------------------------------------------- /libgloss/pa/op50nled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/op50nled.c -------------------------------------------------------------------------------- /libgloss/pa/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/setjmp.S -------------------------------------------------------------------------------- /libgloss/pa/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/test.c -------------------------------------------------------------------------------- /libgloss/pa/w89k-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/w89k-io.c -------------------------------------------------------------------------------- /libgloss/pa/w89k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/w89k.h -------------------------------------------------------------------------------- /libgloss/pa/w89k.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/pa/w89k.ld -------------------------------------------------------------------------------- /libgloss/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/print.c -------------------------------------------------------------------------------- /libgloss/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/putnum.c -------------------------------------------------------------------------------- /libgloss/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/read.c -------------------------------------------------------------------------------- /libgloss/rl78/abort.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/abort.S -------------------------------------------------------------------------------- /libgloss/rl78/argv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/argv.S -------------------------------------------------------------------------------- /libgloss/rl78/argvlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/argvlen.S -------------------------------------------------------------------------------- /libgloss/rl78/chdir.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/chdir.S -------------------------------------------------------------------------------- /libgloss/rl78/chmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/chmod.S -------------------------------------------------------------------------------- /libgloss/rl78/close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/close.S -------------------------------------------------------------------------------- /libgloss/rl78/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/configure -------------------------------------------------------------------------------- /libgloss/rl78/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/crt0.S -------------------------------------------------------------------------------- /libgloss/rl78/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/crtn.S -------------------------------------------------------------------------------- /libgloss/rl78/exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/exit.S -------------------------------------------------------------------------------- /libgloss/rl78/fstat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/fstat.S -------------------------------------------------------------------------------- /libgloss/rl78/gcrt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/gcrt0.S -------------------------------------------------------------------------------- /libgloss/rl78/getpid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/getpid.S -------------------------------------------------------------------------------- /libgloss/rl78/isatty.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/isatty.S -------------------------------------------------------------------------------- /libgloss/rl78/kill.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/kill.S -------------------------------------------------------------------------------- /libgloss/rl78/link.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/link.S -------------------------------------------------------------------------------- /libgloss/rl78/lseek.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/lseek.S -------------------------------------------------------------------------------- /libgloss/rl78/mcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/mcount.c -------------------------------------------------------------------------------- /libgloss/rl78/open.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/open.S -------------------------------------------------------------------------------- /libgloss/rl78/read.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/read.S -------------------------------------------------------------------------------- /libgloss/rl78/rl78-sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/rl78-sys.h -------------------------------------------------------------------------------- /libgloss/rl78/rl78.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/rl78.ld -------------------------------------------------------------------------------- /libgloss/rl78/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/sbrk.c -------------------------------------------------------------------------------- /libgloss/rl78/stat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/stat.S -------------------------------------------------------------------------------- /libgloss/rl78/time.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/time.S -------------------------------------------------------------------------------- /libgloss/rl78/times.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/times.S -------------------------------------------------------------------------------- /libgloss/rl78/utime.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/utime.S -------------------------------------------------------------------------------- /libgloss/rl78/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rl78/write.c -------------------------------------------------------------------------------- /libgloss/rx/abort.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/abort.S -------------------------------------------------------------------------------- /libgloss/rx/argv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/argv.S -------------------------------------------------------------------------------- /libgloss/rx/argvlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/argvlen.S -------------------------------------------------------------------------------- /libgloss/rx/chdir.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/chdir.S -------------------------------------------------------------------------------- /libgloss/rx/chmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/chmod.S -------------------------------------------------------------------------------- /libgloss/rx/close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/close.S -------------------------------------------------------------------------------- /libgloss/rx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/configure -------------------------------------------------------------------------------- /libgloss/rx/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/crt0.S -------------------------------------------------------------------------------- /libgloss/rx/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/crtn.S -------------------------------------------------------------------------------- /libgloss/rx/exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/exit.S -------------------------------------------------------------------------------- /libgloss/rx/fstat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/fstat.S -------------------------------------------------------------------------------- /libgloss/rx/gcrt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/gcrt0.S -------------------------------------------------------------------------------- /libgloss/rx/getpid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/getpid.S -------------------------------------------------------------------------------- /libgloss/rx/heaptop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/heaptop.S -------------------------------------------------------------------------------- /libgloss/rx/isatty.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/isatty.S -------------------------------------------------------------------------------- /libgloss/rx/kill.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/kill.S -------------------------------------------------------------------------------- /libgloss/rx/link.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/link.S -------------------------------------------------------------------------------- /libgloss/rx/lseek.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/lseek.S -------------------------------------------------------------------------------- /libgloss/rx/mcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/mcount.c -------------------------------------------------------------------------------- /libgloss/rx/open.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/open.S -------------------------------------------------------------------------------- /libgloss/rx/read.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/read.S -------------------------------------------------------------------------------- /libgloss/rx/rx-sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/rx-sim.ld -------------------------------------------------------------------------------- /libgloss/rx/rx.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/rx.ld -------------------------------------------------------------------------------- /libgloss/rx/rxsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/rxsys.h -------------------------------------------------------------------------------- /libgloss/rx/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/sbrk.c -------------------------------------------------------------------------------- /libgloss/rx/sleep.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/sleep.S -------------------------------------------------------------------------------- /libgloss/rx/stat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/stat.S -------------------------------------------------------------------------------- /libgloss/rx/time.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/time.S -------------------------------------------------------------------------------- /libgloss/rx/times.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/times.S -------------------------------------------------------------------------------- /libgloss/rx/unlink.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/unlink.S -------------------------------------------------------------------------------- /libgloss/rx/utime.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/utime.S -------------------------------------------------------------------------------- /libgloss/rx/write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/rx/write.S -------------------------------------------------------------------------------- /libgloss/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/sbrk.c -------------------------------------------------------------------------------- /libgloss/sh/sh3bb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/sh/sh3bb.ld -------------------------------------------------------------------------------- /libgloss/sparc/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/sparc/asm.h -------------------------------------------------------------------------------- /libgloss/sparc/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/sparc/crt0.S -------------------------------------------------------------------------------- /libgloss/sparc/dtor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/sparc/dtor.C -------------------------------------------------------------------------------- /libgloss/sparc/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/sparc/test.c -------------------------------------------------------------------------------- /libgloss/spu/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/access.c -------------------------------------------------------------------------------- /libgloss/spu/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/chdir.c -------------------------------------------------------------------------------- /libgloss/spu/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/chmod.c -------------------------------------------------------------------------------- /libgloss/spu/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/chown.c -------------------------------------------------------------------------------- /libgloss/spu/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/close.c -------------------------------------------------------------------------------- /libgloss/spu/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/crt0.S -------------------------------------------------------------------------------- /libgloss/spu/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/crti.S -------------------------------------------------------------------------------- /libgloss/spu/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/crtn.S -------------------------------------------------------------------------------- /libgloss/spu/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/dup.c -------------------------------------------------------------------------------- /libgloss/spu/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/dup2.c -------------------------------------------------------------------------------- /libgloss/spu/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/exit.c -------------------------------------------------------------------------------- /libgloss/spu/fchdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/fchdir.c -------------------------------------------------------------------------------- /libgloss/spu/fchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/fchmod.c -------------------------------------------------------------------------------- /libgloss/spu/fchown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/fchown.c -------------------------------------------------------------------------------- /libgloss/spu/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/fstat.c -------------------------------------------------------------------------------- /libgloss/spu/fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/fsync.c -------------------------------------------------------------------------------- /libgloss/spu/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/getcwd.c -------------------------------------------------------------------------------- /libgloss/spu/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/getpid.c -------------------------------------------------------------------------------- /libgloss/spu/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/isatty.c -------------------------------------------------------------------------------- /libgloss/spu/jsre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/jsre.h -------------------------------------------------------------------------------- /libgloss/spu/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/kill.c -------------------------------------------------------------------------------- /libgloss/spu/lchown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/lchown.c -------------------------------------------------------------------------------- /libgloss/spu/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/link.c -------------------------------------------------------------------------------- /libgloss/spu/lockf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/lockf.c -------------------------------------------------------------------------------- /libgloss/spu/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/lseek.c -------------------------------------------------------------------------------- /libgloss/spu/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/lstat.c -------------------------------------------------------------------------------- /libgloss/spu/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/mkdir.c -------------------------------------------------------------------------------- /libgloss/spu/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/mknod.c -------------------------------------------------------------------------------- /libgloss/spu/mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/mktemp.c -------------------------------------------------------------------------------- /libgloss/spu/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/open.c -------------------------------------------------------------------------------- /libgloss/spu/pread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/pread.c -------------------------------------------------------------------------------- /libgloss/spu/pwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/pwrite.c -------------------------------------------------------------------------------- /libgloss/spu/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/read.c -------------------------------------------------------------------------------- /libgloss/spu/readv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/readv.c -------------------------------------------------------------------------------- /libgloss/spu/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/rmdir.c -------------------------------------------------------------------------------- /libgloss/spu/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/sbrk.c -------------------------------------------------------------------------------- /libgloss/spu/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/stat.c -------------------------------------------------------------------------------- /libgloss/spu/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/sync.c -------------------------------------------------------------------------------- /libgloss/spu/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/times.c -------------------------------------------------------------------------------- /libgloss/spu/umask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/umask.c -------------------------------------------------------------------------------- /libgloss/spu/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/unlink.c -------------------------------------------------------------------------------- /libgloss/spu/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/utime.c -------------------------------------------------------------------------------- /libgloss/spu/utimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/utimes.c -------------------------------------------------------------------------------- /libgloss/spu/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/write.c -------------------------------------------------------------------------------- /libgloss/spu/writev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/spu/writev.c -------------------------------------------------------------------------------- /libgloss/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/stat.c -------------------------------------------------------------------------------- /libgloss/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/syscall.h -------------------------------------------------------------------------------- /libgloss/testsuite/config/hppa.mt: -------------------------------------------------------------------------------- 1 | MULTILIB=-msoft-float 2 | GLOSSDIR=pa 3 | SCRIPTS=w89k op50n 4 | 5 | -------------------------------------------------------------------------------- /libgloss/testsuite/config/m68k.mt: -------------------------------------------------------------------------------- 1 | MULTILIB= 2 | GLOSSDIR=m68k 3 | SCRIPTS=mvme135 idp 4 | -------------------------------------------------------------------------------- /libgloss/testsuite/config/mips.mt: -------------------------------------------------------------------------------- 1 | MULTILIB= 2 | GLOSSDIR=mips 3 | SCRIPTS=array 4 | -------------------------------------------------------------------------------- /libgloss/tic6x/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/tic6x/crt0.S -------------------------------------------------------------------------------- /libgloss/tic6x/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/tic6x/kill.c -------------------------------------------------------------------------------- /libgloss/tic6x/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/tic6x/sbrk.c -------------------------------------------------------------------------------- /libgloss/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/unlink.c -------------------------------------------------------------------------------- /libgloss/v850/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/_exit.c -------------------------------------------------------------------------------- /libgloss/v850/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/chmod.c -------------------------------------------------------------------------------- /libgloss/v850/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/chown.c -------------------------------------------------------------------------------- /libgloss/v850/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/close.c -------------------------------------------------------------------------------- /libgloss/v850/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/creat.c -------------------------------------------------------------------------------- /libgloss/v850/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/crt0.S -------------------------------------------------------------------------------- /libgloss/v850/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/crt1.c -------------------------------------------------------------------------------- /libgloss/v850/execv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/execv.c -------------------------------------------------------------------------------- /libgloss/v850/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/fork.c -------------------------------------------------------------------------------- /libgloss/v850/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/fstat.c -------------------------------------------------------------------------------- /libgloss/v850/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/kill.c -------------------------------------------------------------------------------- /libgloss/v850/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/link.c -------------------------------------------------------------------------------- /libgloss/v850/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/lseek.c -------------------------------------------------------------------------------- /libgloss/v850/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/open.c -------------------------------------------------------------------------------- /libgloss/v850/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/pipe.c -------------------------------------------------------------------------------- /libgloss/v850/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/read.c -------------------------------------------------------------------------------- /libgloss/v850/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/sbrk.c -------------------------------------------------------------------------------- /libgloss/v850/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/sim.ld -------------------------------------------------------------------------------- /libgloss/v850/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/stat.c -------------------------------------------------------------------------------- /libgloss/v850/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/time.c -------------------------------------------------------------------------------- /libgloss/v850/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/times.c -------------------------------------------------------------------------------- /libgloss/v850/trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/trap.S -------------------------------------------------------------------------------- /libgloss/v850/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/utime.c -------------------------------------------------------------------------------- /libgloss/v850/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/wait.c -------------------------------------------------------------------------------- /libgloss/v850/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/v850/write.c -------------------------------------------------------------------------------- /libgloss/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/write.c -------------------------------------------------------------------------------- /libgloss/xc16x/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/xc16x/crt0.S -------------------------------------------------------------------------------- /libgloss/xc16x/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/xc16x/misc.c -------------------------------------------------------------------------------- /libgloss/xc16x/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/xc16x/open.c -------------------------------------------------------------------------------- /libgloss/xc16x/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/xc16x/read.c -------------------------------------------------------------------------------- /libgloss/xc16x/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libgloss/xc16x/sbrk.c -------------------------------------------------------------------------------- /libgloss/xc16x/sys/syscall.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/libtool.m4 -------------------------------------------------------------------------------- /ltgcc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/ltgcc.m4 -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/ltmain.sh -------------------------------------------------------------------------------- /ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/ltoptions.m4 -------------------------------------------------------------------------------- /ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/ltsugar.m4 -------------------------------------------------------------------------------- /ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/ltversion.m4 -------------------------------------------------------------------------------- /lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/lt~obsolete.m4 -------------------------------------------------------------------------------- /makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/makefile.vms -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/missing -------------------------------------------------------------------------------- /mkdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/mkdep -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /move-if-change: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/move-if-change -------------------------------------------------------------------------------- /newlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/ChangeLog -------------------------------------------------------------------------------- /newlib/ChangeLog.nano: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/ChangeLog.nano -------------------------------------------------------------------------------- /newlib/HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/HOWTO -------------------------------------------------------------------------------- /newlib/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/MAINTAINERS -------------------------------------------------------------------------------- /newlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/Makefile.am -------------------------------------------------------------------------------- /newlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/Makefile.in -------------------------------------------------------------------------------- /newlib/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/NEWS -------------------------------------------------------------------------------- /newlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/README -------------------------------------------------------------------------------- /newlib/README.nano: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/README.nano -------------------------------------------------------------------------------- /newlib/acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/acconfig.h -------------------------------------------------------------------------------- /newlib/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/acinclude.m4 -------------------------------------------------------------------------------- /newlib/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/aclocal.m4 -------------------------------------------------------------------------------- /newlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/configure -------------------------------------------------------------------------------- /newlib/configure.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/configure.host -------------------------------------------------------------------------------- /newlib/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/configure.in -------------------------------------------------------------------------------- /newlib/confsubdir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/confsubdir.m4 -------------------------------------------------------------------------------- /newlib/doc/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/doc/aclocal.m4 -------------------------------------------------------------------------------- /newlib/doc/ansidecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/doc/ansidecl.h -------------------------------------------------------------------------------- /newlib/doc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/doc/configure -------------------------------------------------------------------------------- /newlib/doc/doc.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/doc/doc.str -------------------------------------------------------------------------------- /newlib/doc/makedoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/doc/makedoc.c -------------------------------------------------------------------------------- /newlib/iconvdata/EUC-JP.irreversible: -------------------------------------------------------------------------------- 1 | 0x5C 0x00A5 2 | 0x7E 0x203E 3 | -------------------------------------------------------------------------------- /newlib/libc/argz/dummy.c: -------------------------------------------------------------------------------- 1 | /* empty stub to allow objectlist.awk.in to be created */ 2 | -------------------------------------------------------------------------------- /newlib/libc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/libc/configure -------------------------------------------------------------------------------- /newlib/libc/include/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /newlib/libc/include/machine/ansi.h: -------------------------------------------------------------------------------- 1 | /* dummy header file to support BSD compiler */ 2 | -------------------------------------------------------------------------------- /newlib/libc/include/machine/param.h: -------------------------------------------------------------------------------- 1 | /* Place holder for machine-specific param.h. */ 2 | -------------------------------------------------------------------------------- /newlib/libc/include/sys/custom_file.h: -------------------------------------------------------------------------------- 1 | #error System-specific custom_file.h is missing. 2 | 3 | -------------------------------------------------------------------------------- /newlib/libc/include/sys/file.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | -------------------------------------------------------------------------------- /newlib/libc/machine/spu/vfiprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vfprintf.c" 3 | -------------------------------------------------------------------------------- /newlib/libc/machine/spu/vfiscanf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vfscanf.c" 3 | -------------------------------------------------------------------------------- /newlib/libc/machine/spu/viprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vprintf.c" 3 | -------------------------------------------------------------------------------- /newlib/libc/machine/spu/viscanf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vscanf.c" 3 | -------------------------------------------------------------------------------- /newlib/libc/machine/spu/vsiprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vsprintf.c" 3 | -------------------------------------------------------------------------------- /newlib/libc/machine/spu/vsiscanf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vsscanf.c" 3 | -------------------------------------------------------------------------------- /newlib/libc/machine/spu/vsniprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vsnprintf.c" 3 | -------------------------------------------------------------------------------- /newlib/libc/saber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/libc/saber -------------------------------------------------------------------------------- /newlib/libc/sys.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/libc/sys.tex -------------------------------------------------------------------------------- /newlib/libc/sys/arc/dummy.S: -------------------------------------------------------------------------------- 1 | /* Dummy file to force .S.o suffix rule generation. */ 2 | -------------------------------------------------------------------------------- /newlib/libc/sys/decstation/_main.c: -------------------------------------------------------------------------------- 1 | 2 | __main() 3 | { 4 | 5 | 6 | } 7 | -------------------------------------------------------------------------------- /newlib/libc/sys/h8300hms/sys/syscall.h: -------------------------------------------------------------------------------- 1 | #define SYS_read 4 2 | -------------------------------------------------------------------------------- /newlib/libc/sys/linux/dl/libintl.h: -------------------------------------------------------------------------------- 1 | #define N_(x) x 2 | 3 | -------------------------------------------------------------------------------- /newlib/libc/sys/linux/hp-timing.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /newlib/libc/sys/linux/include/semaphore.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /newlib/libc/sys/linux/machine/i386/sysdep.h: -------------------------------------------------------------------------------- 1 | #define NO_UNDERSCORES 2 | -------------------------------------------------------------------------------- /newlib/libc/sys/linux/net/issetugid-stub.c: -------------------------------------------------------------------------------- 1 | int 2 | issetugid(void) 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /newlib/libc/sys/linux/raise.c: -------------------------------------------------------------------------------- 1 | /* empty file so we override regular raise */ 2 | 3 | 4 | -------------------------------------------------------------------------------- /newlib/libc/sys/linux/sethostid.c: -------------------------------------------------------------------------------- 1 | #define SET_PROCEDURE 1 2 | #include "gethostid.c" 3 | -------------------------------------------------------------------------------- /newlib/libc/sys/linux/shlib-compat.h: -------------------------------------------------------------------------------- 1 | #define SHLIB_COMPAT(libc, introduced, obsoleted) 0 2 | -------------------------------------------------------------------------------- /newlib/libc/sys/rtems/dummysys.c: -------------------------------------------------------------------------------- 1 | void not_required_by_rtems( void ) {} 2 | -------------------------------------------------------------------------------- /newlib/libc/sys/sparc64/_main.c: -------------------------------------------------------------------------------- 1 | 2 | __main() 3 | { 4 | 5 | 6 | } 7 | -------------------------------------------------------------------------------- /newlib/libc/sys/sun4/_main.c: -------------------------------------------------------------------------------- 1 | 2 | __main() 3 | { 4 | 5 | 6 | } 7 | -------------------------------------------------------------------------------- /newlib/libc/xdr/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/libc/xdr/xdr.c -------------------------------------------------------------------------------- /newlib/libm/common/local.h: -------------------------------------------------------------------------------- 1 | /* placeholder for future usage. */ 2 | -------------------------------------------------------------------------------- /newlib/libm/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/libm/configure -------------------------------------------------------------------------------- /newlib/newlib.hin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/newlib/newlib.hin -------------------------------------------------------------------------------- /newlib/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /setup.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/setup.com -------------------------------------------------------------------------------- /src-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/src-release -------------------------------------------------------------------------------- /symlink-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/symlink-tree -------------------------------------------------------------------------------- /texinfo/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/texinfo/texinfo.tex -------------------------------------------------------------------------------- /ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/32bitmicro/newlib-nano-2/HEAD/ylwrap --------------------------------------------------------------------------------