├── .gitignore ├── COPYING ├── Makefile ├── ProgramStore ├── 7z │ ├── 7z.h │ ├── 7zlzma.cpp │ ├── AriBitCoder.cpp │ ├── AriBitCoder.h │ ├── AriConst.h │ ├── AriPrice.h │ ├── BinTree.h │ ├── BinTree2.h │ ├── BinTree2Main.h │ ├── BinTree3.h │ ├── BinTree3Main.h │ ├── BinTree3Z.h │ ├── BinTree3ZMain.h │ ├── BinTree4.h │ ├── BinTree4Main.h │ ├── BinTree4b.h │ ├── BinTree4bMain.h │ ├── BinTreeMF.h │ ├── BinTreeMFMain.h │ ├── BinTreeMain.h │ ├── BitTreeCoder.h │ ├── CRC.h │ ├── Const.h │ ├── IInOutStreams.cpp │ ├── IInOutStreams.h │ ├── InByte.cpp │ ├── InByte.h │ ├── LZMA.cpp │ ├── LZMA.h │ ├── LZMADecoder.cpp │ ├── LZMADecoder.h │ ├── LZMAEncoder.cpp │ ├── LZMAEncoder.h │ ├── LenCoder.cpp │ ├── LenCoder.h │ ├── LiteralCoder.cpp │ ├── LiteralCoder.h │ ├── OutByte.cpp │ ├── OutByte.h │ ├── Portable.h │ ├── RCDefs.h │ ├── README │ ├── RangeCoder.h │ ├── WindowIn.cpp │ ├── WindowIn.h │ ├── WindowOut.cpp │ └── WindowOut.h ├── 7znew │ ├── 7z.h │ ├── 7zdeflate.cpp │ ├── 7zlzma.cpp │ ├── AriBitCoder.cpp │ ├── AriBitCoder.h │ ├── AriConst.h │ ├── AriPrice.h │ ├── BinTree.h │ ├── BinTree2.h │ ├── BinTree2Main.h │ ├── BinTree3.h │ ├── BinTree3Main.h │ ├── BinTree3Z.h │ ├── BinTree3ZMain.h │ ├── BinTree4.h │ ├── BinTree4Main.h │ ├── BinTree4b.h │ ├── BinTree4bMain.h │ ├── BinTreeMF.h │ ├── BinTreeMFMain.h │ ├── BinTreeMain.h │ ├── BitTreeCoder.h │ ├── CRC.cpp │ ├── CRC.h │ ├── Const.h │ ├── DeflateDecoder.cpp │ ├── DeflateDecoder.h │ ├── DeflateEncoder.cpp │ ├── DeflateEncoder.h │ ├── HuffmanDecoder.h │ ├── HuffmanEncoder.cpp │ ├── HuffmanEncoder.h │ ├── IInOutStreams.cpp │ ├── IInOutStreams.h │ ├── InByte.cpp │ ├── InByte.h │ ├── LSBFDecoder.cpp │ ├── LSBFDecoder.h │ ├── LSBFEncoder.cpp │ ├── LSBFEncoder.h │ ├── LZMA.cpp │ ├── LZMA.h │ ├── LZMADecoder.cpp │ ├── LZMADecoder.h │ ├── LZMAEncoder.cpp │ ├── LZMAEncoder.h │ ├── LenCoder.cpp │ ├── LenCoder.h │ ├── LiteralCoder.cpp │ ├── LiteralCoder.h │ ├── OutByte.cpp │ ├── OutByte.h │ ├── Portable.h │ ├── RCDefs.h │ ├── README │ ├── RangeCoder.h │ ├── WindowIn.cpp │ ├── WindowIn.h │ ├── WindowOut.cpp │ ├── WindowOut.h │ └── advancecomp-1.15 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── HISTORY │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── compress.cc │ │ ├── compress.h │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── data.cc │ │ ├── data.h │ │ ├── doc │ │ ├── advdef.1 │ │ ├── advdef.d │ │ ├── advdef.html │ │ ├── advdef.txt │ │ ├── advmng.1 │ │ ├── advmng.d │ │ ├── advmng.html │ │ ├── advmng.txt │ │ ├── advpng.1 │ │ ├── advpng.d │ │ ├── advpng.html │ │ ├── advpng.txt │ │ ├── advzip.1 │ │ ├── advzip.d │ │ ├── advzip.html │ │ ├── advzip.txt │ │ ├── authors.1 │ │ ├── authors.d │ │ ├── authors.html │ │ ├── authors.txt │ │ ├── history.1 │ │ ├── history.d │ │ ├── history.html │ │ ├── history.txt │ │ ├── install.1 │ │ ├── install.d │ │ ├── install.html │ │ ├── install.txt │ │ ├── readme.1 │ │ ├── readme.d │ │ ├── readme.html │ │ └── readme.txt │ │ ├── except.h │ │ ├── file.cc │ │ ├── file.h │ │ ├── getopt.c │ │ ├── install-sh │ │ ├── lib │ │ ├── endianrw.h │ │ ├── error.c │ │ ├── error.h │ │ ├── extra.h │ │ ├── fz.c │ │ ├── fz.h │ │ ├── mng.c │ │ ├── mng.h │ │ ├── png.c │ │ ├── png.h │ │ ├── snstring.c │ │ └── snstring.h │ │ ├── missing │ │ ├── mngex.cc │ │ ├── mngex.h │ │ ├── noautomake.sh │ │ ├── pngex.cc │ │ ├── pngex.h │ │ ├── portable.h │ │ ├── redef.cc │ │ ├── remng.cc │ │ ├── repng.cc │ │ ├── rezip.cc │ │ ├── scroll.cc │ │ ├── scroll.h │ │ ├── siglock.cc │ │ ├── siglock.h │ │ ├── snprintf.c │ │ ├── test │ │ ├── basn2c08.png │ │ ├── basn3p01.png │ │ ├── basn3p02.png │ │ ├── basn3p04.png │ │ ├── basn3p08.png │ │ ├── basn6a04.png │ │ ├── basn6a08.png │ │ ├── mappy.mng │ │ ├── mappy.png │ │ └── test.lst │ │ ├── zip.cc │ │ ├── zip.h │ │ └── zipsh.cc ├── Makefile ├── MessageLogZapper.cpp ├── ProgramStore.cpp ├── ProgramStore.dsp ├── ProgramStore.dsw ├── ProgramStore.h ├── ProgramStore.pj ├── ProgramStore.use ├── StdAfx.cpp ├── StdAfx.h ├── alloc.c ├── decompress │ ├── bcmtypes.h │ ├── crc.h │ ├── decompress.cpp │ ├── decompress.h │ ├── nrv2d.h │ └── nrv2d_d.c ├── lzoconf.h ├── minilzo.c ├── minilzo.h ├── n2b_99.c ├── n2d_99.c ├── ucl.h ├── ucl_conf.h ├── ucl_mchw.ch ├── ucl_ptr.h ├── ucl_swd.ch └── uclconf.h ├── README.md ├── bmips4350.S ├── bmips5000.S ├── init.S ├── libfdt ├── Makefile.libfdt ├── TODO ├── fdt.c ├── fdt.h ├── fdt_empty_tree.c ├── fdt_ro.c ├── fdt_rw.c ├── fdt_strerror.c ├── fdt_sw.c ├── fdt_wip.c ├── libfdt.h ├── libfdt_env.h └── libfdt_internal.h ├── main.c ├── map.lds.S ├── misc ├── cm-log.txt ├── dummy.txt ├── flash-3384.expect ├── linux-log.txt └── mr-rootfs.cpio.xz ├── newlib ├── .cvsignore ├── COPYING ├── COPYING.LIB ├── COPYING.LIBGLOSS ├── COPYING.NEWLIB ├── COPYING3 ├── COPYING3.LIB ├── ChangeLog ├── MAINTAINERS ├── Makefile.def ├── Makefile.in ├── Makefile.tpl ├── README ├── README-maintainer-mode ├── 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 ├── 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 │ ├── 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-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 │ │ │ ├── .gdbinit │ │ │ ├── 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 │ ├── HOWTO │ ├── MAINTAINERS │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.shared │ ├── NEWS │ ├── README │ ├── 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 │ │ │ │ ├── config.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 │ │ │ ├── vfscanf.c │ │ │ ├── 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 │ │ │ │ ├── config.h │ │ │ │ ├── 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 │ │ │ │ │ ├── config.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 │ │ │ │ │ ├── config.h │ │ │ │ │ ├── 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 │ │ │ │ ├── config.h │ │ │ │ ├── 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 ├── regdef.h └── stddef.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/Makefile -------------------------------------------------------------------------------- /ProgramStore/7z/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/7z.h -------------------------------------------------------------------------------- /ProgramStore/7z/7zlzma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/7zlzma.cpp -------------------------------------------------------------------------------- /ProgramStore/7z/AriBitCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/AriBitCoder.cpp -------------------------------------------------------------------------------- /ProgramStore/7z/AriBitCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/AriBitCoder.h -------------------------------------------------------------------------------- /ProgramStore/7z/AriConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/AriConst.h -------------------------------------------------------------------------------- /ProgramStore/7z/AriPrice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/AriPrice.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree2.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree2Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree2Main.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree3.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree3Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree3Main.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree3Z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree3Z.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree3ZMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree3ZMain.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree4.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree4Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree4Main.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree4b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree4b.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTree4bMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTree4bMain.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTreeMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTreeMF.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTreeMFMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTreeMFMain.h -------------------------------------------------------------------------------- /ProgramStore/7z/BinTreeMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BinTreeMain.h -------------------------------------------------------------------------------- /ProgramStore/7z/BitTreeCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/BitTreeCoder.h -------------------------------------------------------------------------------- /ProgramStore/7z/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/CRC.h -------------------------------------------------------------------------------- /ProgramStore/7z/Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/Const.h -------------------------------------------------------------------------------- /ProgramStore/7z/IInOutStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/IInOutStreams.h -------------------------------------------------------------------------------- /ProgramStore/7z/InByte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/InByte.cpp -------------------------------------------------------------------------------- /ProgramStore/7z/InByte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/InByte.h -------------------------------------------------------------------------------- /ProgramStore/7z/LZMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/LZMA.cpp -------------------------------------------------------------------------------- /ProgramStore/7z/LZMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/LZMA.h -------------------------------------------------------------------------------- /ProgramStore/7z/LZMADecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/LZMADecoder.cpp -------------------------------------------------------------------------------- /ProgramStore/7z/LZMADecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/LZMADecoder.h -------------------------------------------------------------------------------- /ProgramStore/7z/LZMAEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/LZMAEncoder.cpp -------------------------------------------------------------------------------- /ProgramStore/7z/LZMAEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/LZMAEncoder.h -------------------------------------------------------------------------------- /ProgramStore/7z/LenCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/LenCoder.cpp -------------------------------------------------------------------------------- /ProgramStore/7z/LenCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/LenCoder.h -------------------------------------------------------------------------------- /ProgramStore/7z/LiteralCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/LiteralCoder.h -------------------------------------------------------------------------------- /ProgramStore/7z/OutByte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/OutByte.cpp -------------------------------------------------------------------------------- /ProgramStore/7z/OutByte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/OutByte.h -------------------------------------------------------------------------------- /ProgramStore/7z/Portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/Portable.h -------------------------------------------------------------------------------- /ProgramStore/7z/RCDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/RCDefs.h -------------------------------------------------------------------------------- /ProgramStore/7z/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/README -------------------------------------------------------------------------------- /ProgramStore/7z/RangeCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/RangeCoder.h -------------------------------------------------------------------------------- /ProgramStore/7z/WindowIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/WindowIn.cpp -------------------------------------------------------------------------------- /ProgramStore/7z/WindowIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/WindowIn.h -------------------------------------------------------------------------------- /ProgramStore/7z/WindowOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/WindowOut.cpp -------------------------------------------------------------------------------- /ProgramStore/7z/WindowOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7z/WindowOut.h -------------------------------------------------------------------------------- /ProgramStore/7znew/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/7z.h -------------------------------------------------------------------------------- /ProgramStore/7znew/7zlzma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/7zlzma.cpp -------------------------------------------------------------------------------- /ProgramStore/7znew/AriConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/AriConst.h -------------------------------------------------------------------------------- /ProgramStore/7znew/AriPrice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/AriPrice.h -------------------------------------------------------------------------------- /ProgramStore/7znew/BinTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/BinTree.h -------------------------------------------------------------------------------- /ProgramStore/7znew/BinTree2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/BinTree2.h -------------------------------------------------------------------------------- /ProgramStore/7znew/BinTree3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/BinTree3.h -------------------------------------------------------------------------------- /ProgramStore/7znew/BinTree3Z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/BinTree3Z.h -------------------------------------------------------------------------------- /ProgramStore/7znew/BinTree4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/BinTree4.h -------------------------------------------------------------------------------- /ProgramStore/7znew/BinTree4b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/BinTree4b.h -------------------------------------------------------------------------------- /ProgramStore/7znew/BinTreeMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/BinTreeMF.h -------------------------------------------------------------------------------- /ProgramStore/7znew/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/CRC.cpp -------------------------------------------------------------------------------- /ProgramStore/7znew/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/CRC.h -------------------------------------------------------------------------------- /ProgramStore/7znew/Const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/Const.h -------------------------------------------------------------------------------- /ProgramStore/7znew/InByte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/InByte.cpp -------------------------------------------------------------------------------- /ProgramStore/7znew/InByte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/InByte.h -------------------------------------------------------------------------------- /ProgramStore/7znew/LZMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/LZMA.cpp -------------------------------------------------------------------------------- /ProgramStore/7znew/LZMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/LZMA.h -------------------------------------------------------------------------------- /ProgramStore/7znew/LenCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/LenCoder.cpp -------------------------------------------------------------------------------- /ProgramStore/7znew/LenCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/LenCoder.h -------------------------------------------------------------------------------- /ProgramStore/7znew/OutByte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/OutByte.cpp -------------------------------------------------------------------------------- /ProgramStore/7znew/OutByte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/OutByte.h -------------------------------------------------------------------------------- /ProgramStore/7znew/Portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/Portable.h -------------------------------------------------------------------------------- /ProgramStore/7znew/RCDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/RCDefs.h -------------------------------------------------------------------------------- /ProgramStore/7znew/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/README -------------------------------------------------------------------------------- /ProgramStore/7znew/RangeCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/RangeCoder.h -------------------------------------------------------------------------------- /ProgramStore/7znew/WindowIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/WindowIn.cpp -------------------------------------------------------------------------------- /ProgramStore/7znew/WindowIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/WindowIn.h -------------------------------------------------------------------------------- /ProgramStore/7znew/WindowOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/7znew/WindowOut.h -------------------------------------------------------------------------------- /ProgramStore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/Makefile -------------------------------------------------------------------------------- /ProgramStore/ProgramStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ProgramStore.cpp -------------------------------------------------------------------------------- /ProgramStore/ProgramStore.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ProgramStore.dsp -------------------------------------------------------------------------------- /ProgramStore/ProgramStore.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ProgramStore.dsw -------------------------------------------------------------------------------- /ProgramStore/ProgramStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ProgramStore.h -------------------------------------------------------------------------------- /ProgramStore/ProgramStore.pj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ProgramStore.pj -------------------------------------------------------------------------------- /ProgramStore/ProgramStore.use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ProgramStore.use -------------------------------------------------------------------------------- /ProgramStore/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/StdAfx.cpp -------------------------------------------------------------------------------- /ProgramStore/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/StdAfx.h -------------------------------------------------------------------------------- /ProgramStore/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/alloc.c -------------------------------------------------------------------------------- /ProgramStore/decompress/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/decompress/crc.h -------------------------------------------------------------------------------- /ProgramStore/decompress/nrv2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/decompress/nrv2d.h -------------------------------------------------------------------------------- /ProgramStore/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/lzoconf.h -------------------------------------------------------------------------------- /ProgramStore/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/minilzo.c -------------------------------------------------------------------------------- /ProgramStore/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/minilzo.h -------------------------------------------------------------------------------- /ProgramStore/n2b_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/n2b_99.c -------------------------------------------------------------------------------- /ProgramStore/n2d_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/n2d_99.c -------------------------------------------------------------------------------- /ProgramStore/ucl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ucl.h -------------------------------------------------------------------------------- /ProgramStore/ucl_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ucl_conf.h -------------------------------------------------------------------------------- /ProgramStore/ucl_mchw.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ucl_mchw.ch -------------------------------------------------------------------------------- /ProgramStore/ucl_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ucl_ptr.h -------------------------------------------------------------------------------- /ProgramStore/ucl_swd.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/ucl_swd.ch -------------------------------------------------------------------------------- /ProgramStore/uclconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/ProgramStore/uclconf.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/README.md -------------------------------------------------------------------------------- /bmips4350.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/bmips4350.S -------------------------------------------------------------------------------- /bmips5000.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/bmips5000.S -------------------------------------------------------------------------------- /init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/init.S -------------------------------------------------------------------------------- /libfdt/Makefile.libfdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/Makefile.libfdt -------------------------------------------------------------------------------- /libfdt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/TODO -------------------------------------------------------------------------------- /libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/fdt.c -------------------------------------------------------------------------------- /libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/fdt.h -------------------------------------------------------------------------------- /libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/fdt_empty_tree.c -------------------------------------------------------------------------------- /libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/fdt_strerror.c -------------------------------------------------------------------------------- /libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/libfdt.h -------------------------------------------------------------------------------- /libfdt/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/libfdt_env.h -------------------------------------------------------------------------------- /libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/libfdt/libfdt_internal.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/main.c -------------------------------------------------------------------------------- /map.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/map.lds.S -------------------------------------------------------------------------------- /misc/cm-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/misc/cm-log.txt -------------------------------------------------------------------------------- /misc/dummy.txt: -------------------------------------------------------------------------------- 1 | Dummy rootfs. Some CM images require this. 2 | -------------------------------------------------------------------------------- /misc/flash-3384.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/misc/flash-3384.expect -------------------------------------------------------------------------------- /misc/linux-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/misc/linux-log.txt -------------------------------------------------------------------------------- /misc/mr-rootfs.cpio.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/misc/mr-rootfs.cpio.xz -------------------------------------------------------------------------------- /newlib/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/.cvsignore -------------------------------------------------------------------------------- /newlib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/COPYING -------------------------------------------------------------------------------- /newlib/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/COPYING.LIB -------------------------------------------------------------------------------- /newlib/COPYING.LIBGLOSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/COPYING.LIBGLOSS -------------------------------------------------------------------------------- /newlib/COPYING.NEWLIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/COPYING.NEWLIB -------------------------------------------------------------------------------- /newlib/COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/COPYING3 -------------------------------------------------------------------------------- /newlib/COPYING3.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/COPYING3.LIB -------------------------------------------------------------------------------- /newlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/ChangeLog -------------------------------------------------------------------------------- /newlib/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/MAINTAINERS -------------------------------------------------------------------------------- /newlib/Makefile.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/Makefile.def -------------------------------------------------------------------------------- /newlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/Makefile.in -------------------------------------------------------------------------------- /newlib/Makefile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/Makefile.tpl -------------------------------------------------------------------------------- /newlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/README -------------------------------------------------------------------------------- /newlib/README-maintainer-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/README-maintainer-mode -------------------------------------------------------------------------------- /newlib/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/compile -------------------------------------------------------------------------------- /newlib/config-ml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config-ml.in -------------------------------------------------------------------------------- /newlib/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config.guess -------------------------------------------------------------------------------- /newlib/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config.rpath -------------------------------------------------------------------------------- /newlib/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config.sub -------------------------------------------------------------------------------- /newlib/config/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/ChangeLog -------------------------------------------------------------------------------- /newlib/config/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/acinclude.m4 -------------------------------------------------------------------------------- /newlib/config/acx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/acx.m4 -------------------------------------------------------------------------------- /newlib/config/asmcfi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/asmcfi.m4 -------------------------------------------------------------------------------- /newlib/config/bootstrap-O1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/bootstrap-O1.mk -------------------------------------------------------------------------------- /newlib/config/bootstrap-O3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/bootstrap-O3.mk -------------------------------------------------------------------------------- /newlib/config/bootstrap-asan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/bootstrap-asan.mk -------------------------------------------------------------------------------- /newlib/config/bootstrap-lto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/bootstrap-lto.mk -------------------------------------------------------------------------------- /newlib/config/bootstrap-time.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/bootstrap-time.mk -------------------------------------------------------------------------------- /newlib/config/cloog.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/cloog.m4 -------------------------------------------------------------------------------- /newlib/config/codeset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/codeset.m4 -------------------------------------------------------------------------------- /newlib/config/depstand.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/depstand.m4 -------------------------------------------------------------------------------- /newlib/config/dfp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/dfp.m4 -------------------------------------------------------------------------------- /newlib/config/elf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/elf.m4 -------------------------------------------------------------------------------- /newlib/config/enable.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/enable.m4 -------------------------------------------------------------------------------- /newlib/config/extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/extensions.m4 -------------------------------------------------------------------------------- /newlib/config/futex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/futex.m4 -------------------------------------------------------------------------------- /newlib/config/gc++filt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/gc++filt.m4 -------------------------------------------------------------------------------- /newlib/config/gettext-sister.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/gettext-sister.m4 -------------------------------------------------------------------------------- /newlib/config/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/gettext.m4 -------------------------------------------------------------------------------- /newlib/config/glibc21.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/glibc21.m4 -------------------------------------------------------------------------------- /newlib/config/gthr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/gthr.m4 -------------------------------------------------------------------------------- /newlib/config/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/iconv.m4 -------------------------------------------------------------------------------- /newlib/config/intdiv0.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/intdiv0.m4 -------------------------------------------------------------------------------- /newlib/config/inttypes-pri.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/inttypes-pri.m4 -------------------------------------------------------------------------------- /newlib/config/inttypes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/inttypes.m4 -------------------------------------------------------------------------------- /newlib/config/inttypes_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/inttypes_h.m4 -------------------------------------------------------------------------------- /newlib/config/isl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/isl.m4 -------------------------------------------------------------------------------- /newlib/config/largefile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/largefile.m4 -------------------------------------------------------------------------------- /newlib/config/lcmessage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/lcmessage.m4 -------------------------------------------------------------------------------- /newlib/config/ld-symbolic.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/ld-symbolic.m4 -------------------------------------------------------------------------------- /newlib/config/lead-dot.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/lead-dot.m4 -------------------------------------------------------------------------------- /newlib/config/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/lib-ld.m4 -------------------------------------------------------------------------------- /newlib/config/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/lib-link.m4 -------------------------------------------------------------------------------- /newlib/config/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/lib-prefix.m4 -------------------------------------------------------------------------------- /newlib/config/lthostflags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/lthostflags.m4 -------------------------------------------------------------------------------- /newlib/config/math.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/math.m4 -------------------------------------------------------------------------------- /newlib/config/mh-cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mh-cygwin -------------------------------------------------------------------------------- /newlib/config/mh-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mh-darwin -------------------------------------------------------------------------------- /newlib/config/mh-djgpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mh-djgpp -------------------------------------------------------------------------------- /newlib/config/mh-mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mh-mingw -------------------------------------------------------------------------------- /newlib/config/mh-pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mh-pa -------------------------------------------------------------------------------- /newlib/config/mh-pa-hpux10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mh-pa-hpux10 -------------------------------------------------------------------------------- /newlib/config/mh-ppc-aix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mh-ppc-aix -------------------------------------------------------------------------------- /newlib/config/mmap.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mmap.m4 -------------------------------------------------------------------------------- /newlib/config/mt-alphaieee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mt-alphaieee -------------------------------------------------------------------------------- /newlib/config/mt-d30v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mt-d30v -------------------------------------------------------------------------------- /newlib/config/mt-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mt-gnu -------------------------------------------------------------------------------- /newlib/config/mt-mips-elfoabi: -------------------------------------------------------------------------------- 1 | include $(srcdir)/config/mt-mips16-compat 2 | -------------------------------------------------------------------------------- /newlib/config/mt-mips-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mt-mips-gnu -------------------------------------------------------------------------------- /newlib/config/mt-mips16-compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mt-mips16-compat -------------------------------------------------------------------------------- /newlib/config/mt-ospace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mt-ospace -------------------------------------------------------------------------------- /newlib/config/mt-sde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mt-sde -------------------------------------------------------------------------------- /newlib/config/mt-spu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/mt-spu -------------------------------------------------------------------------------- /newlib/config/multi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/multi.m4 -------------------------------------------------------------------------------- /newlib/config/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/nls.m4 -------------------------------------------------------------------------------- /newlib/config/no-executables.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/no-executables.m4 -------------------------------------------------------------------------------- /newlib/config/override.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/override.m4 -------------------------------------------------------------------------------- /newlib/config/picflag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/picflag.m4 -------------------------------------------------------------------------------- /newlib/config/plugins.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/plugins.m4 -------------------------------------------------------------------------------- /newlib/config/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/po.m4 -------------------------------------------------------------------------------- /newlib/config/proginstall.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/proginstall.m4 -------------------------------------------------------------------------------- /newlib/config/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/progtest.m4 -------------------------------------------------------------------------------- /newlib/config/stdint.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/stdint.m4 -------------------------------------------------------------------------------- /newlib/config/stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/stdint_h.m4 -------------------------------------------------------------------------------- /newlib/config/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/tcl.m4 -------------------------------------------------------------------------------- /newlib/config/tls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/tls.m4 -------------------------------------------------------------------------------- /newlib/config/uintmax_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/uintmax_t.m4 -------------------------------------------------------------------------------- /newlib/config/ulonglong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/ulonglong.m4 -------------------------------------------------------------------------------- /newlib/config/unwind_ipinfo.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/unwind_ipinfo.m4 -------------------------------------------------------------------------------- /newlib/config/warnings.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/warnings.m4 -------------------------------------------------------------------------------- /newlib/config/weakref.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/weakref.m4 -------------------------------------------------------------------------------- /newlib/config/zlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/config/zlib.m4 -------------------------------------------------------------------------------- /newlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/configure -------------------------------------------------------------------------------- /newlib/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/configure.ac -------------------------------------------------------------------------------- /newlib/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/depcomp -------------------------------------------------------------------------------- /newlib/etc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/ChangeLog -------------------------------------------------------------------------------- /newlib/etc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/Makefile.in -------------------------------------------------------------------------------- /newlib/etc/add-log.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/add-log.el -------------------------------------------------------------------------------- /newlib/etc/add-log.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/add-log.vi -------------------------------------------------------------------------------- /newlib/etc/configbuild.ein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configbuild.ein -------------------------------------------------------------------------------- /newlib/etc/configbuild.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configbuild.fig -------------------------------------------------------------------------------- /newlib/etc/configbuild.jin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configbuild.jin -------------------------------------------------------------------------------- /newlib/etc/configbuild.tin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configbuild.tin -------------------------------------------------------------------------------- /newlib/etc/configdev.ein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configdev.ein -------------------------------------------------------------------------------- /newlib/etc/configdev.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configdev.fig -------------------------------------------------------------------------------- /newlib/etc/configdev.jin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configdev.jin -------------------------------------------------------------------------------- /newlib/etc/configdev.tin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configdev.tin -------------------------------------------------------------------------------- /newlib/etc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configure -------------------------------------------------------------------------------- /newlib/etc/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configure.in -------------------------------------------------------------------------------- /newlib/etc/configure.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/configure.texi -------------------------------------------------------------------------------- /newlib/etc/fdl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/fdl.texi -------------------------------------------------------------------------------- /newlib/etc/gnu-oids.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/gnu-oids.texi -------------------------------------------------------------------------------- /newlib/etc/make-stds.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/make-stds.texi -------------------------------------------------------------------------------- /newlib/etc/standards.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/standards.texi -------------------------------------------------------------------------------- /newlib/etc/texi2pod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/etc/texi2pod.pl -------------------------------------------------------------------------------- /newlib/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/install-sh -------------------------------------------------------------------------------- /newlib/libgloss/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/ChangeLog -------------------------------------------------------------------------------- /newlib/libgloss/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/Makefile.in -------------------------------------------------------------------------------- /newlib/libgloss/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/README -------------------------------------------------------------------------------- /newlib/libgloss/aarch64/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/aarch64/_exit.c -------------------------------------------------------------------------------- /newlib/libgloss/aarch64/_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/aarch64/_kill.c -------------------------------------------------------------------------------- /newlib/libgloss/aarch64/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/aarch64/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/aarch64/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/aarch64/svc.h -------------------------------------------------------------------------------- /newlib/libgloss/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/acinclude.m4 -------------------------------------------------------------------------------- /newlib/libgloss/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/arm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/Makefile.in -------------------------------------------------------------------------------- /newlib/libgloss/arm/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/_exit.c -------------------------------------------------------------------------------- /newlib/libgloss/arm/_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/_kill.c -------------------------------------------------------------------------------- /newlib/libgloss/arm/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/arm/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/arm.h -------------------------------------------------------------------------------- /newlib/libgloss/arm/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/configure -------------------------------------------------------------------------------- /newlib/libgloss/arm/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/arm/ftruncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/ftruncate.c -------------------------------------------------------------------------------- /newlib/libgloss/arm/libcfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/libcfunc.c -------------------------------------------------------------------------------- /newlib/libgloss/arm/swi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/swi.h -------------------------------------------------------------------------------- /newlib/libgloss/arm/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/syscall.h -------------------------------------------------------------------------------- /newlib/libgloss/arm/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/syscalls.c -------------------------------------------------------------------------------- /newlib/libgloss/arm/trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/trap.S -------------------------------------------------------------------------------- /newlib/libgloss/arm/truncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/arm/truncate.c -------------------------------------------------------------------------------- /newlib/libgloss/bfin/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/_exit.c -------------------------------------------------------------------------------- /newlib/libgloss/bfin/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/bfin/basiccrt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/basiccrt.S -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf504.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf504.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf506.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf506.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf512.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf512.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf514.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf514.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf516.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf516.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf518.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf518.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf522.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf522.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf523.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf523.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf524.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf524.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf525.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf525.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf526.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf526.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf527.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf527.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf531.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf531.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf532.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf532.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf533.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf533.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf534.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf534.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf536.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf536.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf537.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf537.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf538.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf538.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf539.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf539.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf542.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf542.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf544.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf544.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf547.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf547.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf548.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf548.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf549.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf549.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf561.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf561.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf561a.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf561a.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf561b.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf561b.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf561m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf561m.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf592.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf592.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf606.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf606.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf606c0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf606c0.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf606c1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf606c1.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf606m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf606m.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf607.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf607.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf607c0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf607c0.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf607c1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf607c1.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf607m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf607m.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf608.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf608.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf608c0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf608c0.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf608c1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf608c1.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf608m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf608m.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf609.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf609.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf609c0.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf609c0.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf609c1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf609c1.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/bf609m.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/bf609m.ld -------------------------------------------------------------------------------- /newlib/libgloss/bfin/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/configure -------------------------------------------------------------------------------- /newlib/libgloss/bfin/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/bfin/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/bfin/syscalls.c -------------------------------------------------------------------------------- /newlib/libgloss/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/close.c -------------------------------------------------------------------------------- /newlib/libgloss/config/dos.mh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/config/dos.mh -------------------------------------------------------------------------------- /newlib/libgloss/config/mips.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/config/mips.mt -------------------------------------------------------------------------------- /newlib/libgloss/config/ppc.mh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/config/ppc.mh -------------------------------------------------------------------------------- /newlib/libgloss/config/xc16x.mt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/config/xc16x.mt -------------------------------------------------------------------------------- /newlib/libgloss/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/configure -------------------------------------------------------------------------------- /newlib/libgloss/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/configure.in -------------------------------------------------------------------------------- /newlib/libgloss/cr16/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/_exit.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/_getenv.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/_rename.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/cr16/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/close.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/configure -------------------------------------------------------------------------------- /newlib/libgloss/cr16/crt1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/crt1.S -------------------------------------------------------------------------------- /newlib/libgloss/cr16/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/crti.S -------------------------------------------------------------------------------- /newlib/libgloss/cr16/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/crtn.S -------------------------------------------------------------------------------- /newlib/libgloss/cr16/dvz_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/dvz_hndl.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/flg_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/flg_hndl.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/fstat.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/getpid.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/iad_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/iad_hndl.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/intable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/intable.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/isatty.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/lseek.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/open.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/putnum.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/read.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/sim.ld -------------------------------------------------------------------------------- /newlib/libgloss/cr16/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/svc_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/svc_hndl.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/time.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/und_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/und_hndl.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/unlink.c -------------------------------------------------------------------------------- /newlib/libgloss/cr16/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cr16/write.c -------------------------------------------------------------------------------- /newlib/libgloss/cris/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cris/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/cris/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cris/configure -------------------------------------------------------------------------------- /newlib/libgloss/cris/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cris/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/cris/crti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cris/crti.c -------------------------------------------------------------------------------- /newlib/libgloss/cris/crtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cris/crtn.c -------------------------------------------------------------------------------- /newlib/libgloss/cris/irqtable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cris/irqtable.S -------------------------------------------------------------------------------- /newlib/libgloss/cris/lcrt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cris/lcrt0.c -------------------------------------------------------------------------------- /newlib/libgloss/cris/outbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cris/outbyte.c -------------------------------------------------------------------------------- /newlib/libgloss/cris/setup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/cris/setup.S -------------------------------------------------------------------------------- /newlib/libgloss/crx/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/Makefile.in -------------------------------------------------------------------------------- /newlib/libgloss/crx/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/_exit.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/_getenv.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/_rename.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/crx/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/close.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/configure -------------------------------------------------------------------------------- /newlib/libgloss/crx/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/crx/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/crti.S -------------------------------------------------------------------------------- /newlib/libgloss/crx/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/crtn.S -------------------------------------------------------------------------------- /newlib/libgloss/crx/dvz_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/dvz_hndl.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/flg_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/flg_hndl.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/fstat.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/getpid.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/iad_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/iad_hndl.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/intable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/intable.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/isatty.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/lseek.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/open.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/putnum.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/read.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/sim.ld -------------------------------------------------------------------------------- /newlib/libgloss/crx/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/svc_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/svc_hndl.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/time.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/und_hndl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/und_hndl.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/unlink.c -------------------------------------------------------------------------------- /newlib/libgloss/crx/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/crx/write.c -------------------------------------------------------------------------------- /newlib/libgloss/d30v/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/d30v/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/d30v/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/d30v/configure -------------------------------------------------------------------------------- /newlib/libgloss/d30v/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/d30v/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/d30v/inbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/d30v/inbyte.c -------------------------------------------------------------------------------- /newlib/libgloss/d30v/outbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/d30v/outbyte.c -------------------------------------------------------------------------------- /newlib/libgloss/d30v/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/d30v/syscalls.c -------------------------------------------------------------------------------- /newlib/libgloss/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/debug.c -------------------------------------------------------------------------------- /newlib/libgloss/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/debug.h -------------------------------------------------------------------------------- /newlib/libgloss/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/doc/Makefile.in -------------------------------------------------------------------------------- /newlib/libgloss/doc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/doc/configure -------------------------------------------------------------------------------- /newlib/libgloss/epiphany/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/epiphany/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/epiphany/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/epiphany/fork.c -------------------------------------------------------------------------------- /newlib/libgloss/epiphany/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/epiphany/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/epiphany/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/epiphany/link.c -------------------------------------------------------------------------------- /newlib/libgloss/epiphany/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/epiphany/open.c -------------------------------------------------------------------------------- /newlib/libgloss/epiphany/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/epiphany/read.c -------------------------------------------------------------------------------- /newlib/libgloss/epiphany/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/epiphany/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/epiphany/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/epiphany/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/epiphany/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/epiphany/wait.c -------------------------------------------------------------------------------- /newlib/libgloss/fr30/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/fr30/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/fr30/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/fr30/configure -------------------------------------------------------------------------------- /newlib/libgloss/fr30/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/fr30/crt0.s -------------------------------------------------------------------------------- /newlib/libgloss/fr30/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/fr30/syscalls.c -------------------------------------------------------------------------------- /newlib/libgloss/frv/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/Makefile.in -------------------------------------------------------------------------------- /newlib/libgloss/frv/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/frv/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/configure -------------------------------------------------------------------------------- /newlib/libgloss/frv/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/frv/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/fstat.c -------------------------------------------------------------------------------- /newlib/libgloss/frv/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/getpid.c -------------------------------------------------------------------------------- /newlib/libgloss/frv/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/isatty.c -------------------------------------------------------------------------------- /newlib/libgloss/frv/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/frv/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/print.c -------------------------------------------------------------------------------- /newlib/libgloss/frv/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/putnum.c -------------------------------------------------------------------------------- /newlib/libgloss/frv/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/frv/sim-close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/sim-close.S -------------------------------------------------------------------------------- /newlib/libgloss/frv/sim-exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/sim-exit.S -------------------------------------------------------------------------------- /newlib/libgloss/frv/sim-lseek.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/sim-lseek.S -------------------------------------------------------------------------------- /newlib/libgloss/frv/sim-open.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/sim-open.S -------------------------------------------------------------------------------- /newlib/libgloss/frv/sim-read.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/sim-read.S -------------------------------------------------------------------------------- /newlib/libgloss/frv/sim-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/sim-time.c -------------------------------------------------------------------------------- /newlib/libgloss/frv/sim-write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/sim-write.S -------------------------------------------------------------------------------- /newlib/libgloss/frv/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/frv/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/fstat.c -------------------------------------------------------------------------------- /newlib/libgloss/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/getpid.c -------------------------------------------------------------------------------- /newlib/libgloss/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/glue.h -------------------------------------------------------------------------------- /newlib/libgloss/hp74x/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/hp74x/README -------------------------------------------------------------------------------- /newlib/libgloss/hp74x/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/hp74x/configure -------------------------------------------------------------------------------- /newlib/libgloss/hp74x/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/hp74x/crt0.s -------------------------------------------------------------------------------- /newlib/libgloss/hp74x/hppa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/hp74x/hppa.ld -------------------------------------------------------------------------------- /newlib/libgloss/hp74x/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/hp74x/io.c -------------------------------------------------------------------------------- /newlib/libgloss/hp74x/pa_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/hp74x/pa_stub.c -------------------------------------------------------------------------------- /newlib/libgloss/hp74x/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/hp74x/test.c -------------------------------------------------------------------------------- /newlib/libgloss/i386/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i386/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/i386/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i386/configure -------------------------------------------------------------------------------- /newlib/libgloss/i386/cygmon.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i386/cygmon.ld -------------------------------------------------------------------------------- /newlib/libgloss/i960/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i960/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/i960/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i960/asm.h -------------------------------------------------------------------------------- /newlib/libgloss/i960/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i960/configure -------------------------------------------------------------------------------- /newlib/libgloss/i960/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i960/crt0.c -------------------------------------------------------------------------------- /newlib/libgloss/i960/mon-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i960/mon-read.c -------------------------------------------------------------------------------- /newlib/libgloss/i960/mon960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i960/mon960.c -------------------------------------------------------------------------------- /newlib/libgloss/i960/mon960.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i960/mon960.ld -------------------------------------------------------------------------------- /newlib/libgloss/i960/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/i960/syscall.h -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/_exit.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/access.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/chmod.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/chown.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/close.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/creat.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/crt1.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/execv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/execv.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/execve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/execve.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/fork.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/fstat.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/getpid.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/isatty.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/lseek.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/open.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/pipe.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/read.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/sim.ld -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/test.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/time.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/times.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/trap.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/trap.h -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/unlink.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/utime.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/wait.c -------------------------------------------------------------------------------- /newlib/libgloss/iq2000/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/iq2000/write.c -------------------------------------------------------------------------------- /newlib/libgloss/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/isatty.c -------------------------------------------------------------------------------- /newlib/libgloss/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/libnosys/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/libnosys/fork.c -------------------------------------------------------------------------------- /newlib/libgloss/libnosys/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/libnosys/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/libnosys/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/libnosys/link.c -------------------------------------------------------------------------------- /newlib/libgloss/libnosys/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/libnosys/open.c -------------------------------------------------------------------------------- /newlib/libgloss/libnosys/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/libnosys/read.c -------------------------------------------------------------------------------- /newlib/libgloss/libnosys/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/libnosys/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/libnosys/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/libnosys/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/libnosys/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/libnosys/wait.c -------------------------------------------------------------------------------- /newlib/libgloss/lm32/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/lm32/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/lm32/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/lm32/configure -------------------------------------------------------------------------------- /newlib/libgloss/lm32/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/lm32/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/lm32/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/lm32/isatty.c -------------------------------------------------------------------------------- /newlib/libgloss/lm32/scall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/lm32/scall.S -------------------------------------------------------------------------------- /newlib/libgloss/lm32/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/lm32/sim.ld -------------------------------------------------------------------------------- /newlib/libgloss/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/lseek.c -------------------------------------------------------------------------------- /newlib/libgloss/m32c/abort.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/abort.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/m32c/argv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/argv.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/argvlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/argvlen.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/chdir.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/chdir.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/chmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/chmod.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/close.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/configure -------------------------------------------------------------------------------- /newlib/libgloss/m32c/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/crtn.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/exit.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/fstat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/fstat.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/genscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/genscript -------------------------------------------------------------------------------- /newlib/libgloss/m32c/getpid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/getpid.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/heaptop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/heaptop.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/isatty.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/isatty.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/kill.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/kill.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/link.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/link.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/lseek.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/lseek.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/m32c.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/m32c.tmpl -------------------------------------------------------------------------------- /newlib/libgloss/m32c/m32csys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/m32csys.h -------------------------------------------------------------------------------- /newlib/libgloss/m32c/open.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/open.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/read.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/read.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/sample.c -------------------------------------------------------------------------------- /newlib/libgloss/m32c/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/m32c/stat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/stat.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/time.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/time.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/times.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/times.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/unlink.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/unlink.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/utime.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/utime.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/varvects.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/varvects.S -------------------------------------------------------------------------------- /newlib/libgloss/m32c/varvects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/varvects.h -------------------------------------------------------------------------------- /newlib/libgloss/m32c/write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32c/write.S -------------------------------------------------------------------------------- /newlib/libgloss/m32r/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/m32r/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/chmod.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/close.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/configure -------------------------------------------------------------------------------- /newlib/libgloss/m32r/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/m32r/eit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/eit.h -------------------------------------------------------------------------------- /newlib/libgloss/m32r/eva.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/eva.ld -------------------------------------------------------------------------------- /newlib/libgloss/m32r/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/exit.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/fstat.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/getpid.c: -------------------------------------------------------------------------------- 1 | 2 | int 3 | _getpid (int n) 4 | { 5 | return 1; 6 | } 7 | -------------------------------------------------------------------------------- /newlib/libgloss/m32r/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/isatty.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/lseek.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/m32r-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/m32r-lib.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/mon.specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/mon.specs -------------------------------------------------------------------------------- /newlib/libgloss/m32r/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/open.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/raise.c: -------------------------------------------------------------------------------- 1 | /* ??? Needed? */ 2 | 3 | _raise () 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /newlib/libgloss/m32r/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/read.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/trap0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/trap0.S -------------------------------------------------------------------------------- /newlib/libgloss/m32r/trapmon0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/trapmon0.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/unlink.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/utime.c -------------------------------------------------------------------------------- /newlib/libgloss/m32r/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m32r/write.c -------------------------------------------------------------------------------- /newlib/libgloss/m68hc11/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68hc11/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/m68k/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/README -------------------------------------------------------------------------------- /newlib/libgloss/m68k/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/aclocal.m4 -------------------------------------------------------------------------------- /newlib/libgloss/m68k/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/asm.h -------------------------------------------------------------------------------- /newlib/libgloss/m68k/bcc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/bcc.ld -------------------------------------------------------------------------------- /newlib/libgloss/m68k/cf-crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/cf-crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/m68k/cf-crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/cf-crt1.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/cf-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/cf-exit.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/cf-isrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/cf-isrs.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/cf-isv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/cf-isv.S -------------------------------------------------------------------------------- /newlib/libgloss/m68k/cf-sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/cf-sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/cf.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/cf.sc -------------------------------------------------------------------------------- /newlib/libgloss/m68k/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/configure -------------------------------------------------------------------------------- /newlib/libgloss/m68k/cpu32bug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/cpu32bug.S -------------------------------------------------------------------------------- /newlib/libgloss/m68k/cpu32bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/cpu32bug.h -------------------------------------------------------------------------------- /newlib/libgloss/m68k/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/m68k/dtor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/dtor.C -------------------------------------------------------------------------------- /newlib/libgloss/m68k/fido.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/fido.h -------------------------------------------------------------------------------- /newlib/libgloss/m68k/fido.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/fido.sc -------------------------------------------------------------------------------- /newlib/libgloss/m68k/idp.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/idp.ld -------------------------------------------------------------------------------- /newlib/libgloss/m68k/idpgdb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/idpgdb.ld -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io-close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io-close.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io-exit.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io-fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io-fstat.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io-gdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io-gdb.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io-lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io-lseek.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io-open.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io-read.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io-stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io-stat.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io-time.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io-write.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/io.h -------------------------------------------------------------------------------- /newlib/libgloss/m68k/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/leds.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/leds.h -------------------------------------------------------------------------------- /newlib/libgloss/m68k/mc68ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/mc68ec.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/mvme.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/mvme.S -------------------------------------------------------------------------------- /newlib/libgloss/m68k/mvme135.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/mvme135.ld -------------------------------------------------------------------------------- /newlib/libgloss/m68k/mvme162.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/mvme162.ld -------------------------------------------------------------------------------- /newlib/libgloss/m68k/sbc5204.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/sbc5204.ld -------------------------------------------------------------------------------- /newlib/libgloss/m68k/sbc5206.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/sbc5206.ld -------------------------------------------------------------------------------- /newlib/libgloss/m68k/sim-crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/sim-crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/m68k/sim-sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/sim-sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/m68k/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/sim.ld -------------------------------------------------------------------------------- /newlib/libgloss/m68k/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/m68k/test.c -------------------------------------------------------------------------------- /newlib/libgloss/mcore/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mcore/close.c -------------------------------------------------------------------------------- /newlib/libgloss/mcore/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mcore/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/mcore/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mcore/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/mcore/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mcore/open.c -------------------------------------------------------------------------------- /newlib/libgloss/mcore/pe-cmb.specs: -------------------------------------------------------------------------------- 1 | *endfile: 2 | -Tcmb.ld 3 | 4 | -------------------------------------------------------------------------------- /newlib/libgloss/mcore/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mcore/read.c -------------------------------------------------------------------------------- /newlib/libgloss/mcore/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mcore/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/mcore/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mcore/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/mep/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mep/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/mep/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mep/crtn.S -------------------------------------------------------------------------------- /newlib/libgloss/mep/fmax.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mep/fmax.ld -------------------------------------------------------------------------------- /newlib/libgloss/mep/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mep/isatty.c -------------------------------------------------------------------------------- /newlib/libgloss/mep/mep-bb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mep/mep-bb.c -------------------------------------------------------------------------------- /newlib/libgloss/mep/min.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mep/min.ld -------------------------------------------------------------------------------- /newlib/libgloss/mep/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mep/read.c -------------------------------------------------------------------------------- /newlib/libgloss/mep/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mep/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/mep/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mep/write.c -------------------------------------------------------------------------------- /newlib/libgloss/mips/cfe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/cfe.c -------------------------------------------------------------------------------- /newlib/libgloss/mips/cfe.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/cfe.ld -------------------------------------------------------------------------------- /newlib/libgloss/mips/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/mips/ddb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/ddb.ld -------------------------------------------------------------------------------- /newlib/libgloss/mips/dtor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/dtor.C -------------------------------------------------------------------------------- /newlib/libgloss/mips/dve.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/dve.ld -------------------------------------------------------------------------------- /newlib/libgloss/mips/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/entry.S -------------------------------------------------------------------------------- /newlib/libgloss/mips/idt.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/idt.ld -------------------------------------------------------------------------------- /newlib/libgloss/mips/lsi.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/lsi.ld -------------------------------------------------------------------------------- /newlib/libgloss/mips/lsipmon.S: -------------------------------------------------------------------------------- 1 | #define LSI 1 2 | #include "pmon.S" 3 | -------------------------------------------------------------------------------- /newlib/libgloss/mips/pmon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/pmon.S -------------------------------------------------------------------------------- /newlib/libgloss/mips/pmon.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/pmon.ld -------------------------------------------------------------------------------- /newlib/libgloss/mips/regs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/regs.S -------------------------------------------------------------------------------- /newlib/libgloss/mips/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mips/test.c -------------------------------------------------------------------------------- /newlib/libgloss/moxie/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/moxie/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/moxie/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/moxie/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/moxie/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/moxie/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/moxie/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/moxie/sim.ld -------------------------------------------------------------------------------- /newlib/libgloss/moxie/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/moxie/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/msp430/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/msp430/cio.c -------------------------------------------------------------------------------- /newlib/libgloss/msp430/cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/msp430/cio.h -------------------------------------------------------------------------------- /newlib/libgloss/mt/16-002.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/16-002.ld -------------------------------------------------------------------------------- /newlib/libgloss/mt/16-003.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/16-003.ld -------------------------------------------------------------------------------- /newlib/libgloss/mt/64-001.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/64-001.ld -------------------------------------------------------------------------------- /newlib/libgloss/mt/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/access.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/chmod.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/close.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/configure -------------------------------------------------------------------------------- /newlib/libgloss/mt/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/mt/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/exit.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/fstat.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/getpid.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/gettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/gettime.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/isatty.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/lseek.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/ms2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/ms2.ld -------------------------------------------------------------------------------- /newlib/libgloss/mt/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/open.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/read.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/time.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/times.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/trap.S -------------------------------------------------------------------------------- /newlib/libgloss/mt/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/trap.h -------------------------------------------------------------------------------- /newlib/libgloss/mt/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/unlink.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/utime.c -------------------------------------------------------------------------------- /newlib/libgloss/mt/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/mt/write.c -------------------------------------------------------------------------------- /newlib/libgloss/nds32/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/nds32/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/nds32/crt1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/nds32/crt1.S -------------------------------------------------------------------------------- /newlib/libgloss/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/open.c -------------------------------------------------------------------------------- /newlib/libgloss/pa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/pa/README -------------------------------------------------------------------------------- /newlib/libgloss/pa/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/pa/configure -------------------------------------------------------------------------------- /newlib/libgloss/pa/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/pa/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/pa/op50n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/pa/op50n.h -------------------------------------------------------------------------------- /newlib/libgloss/pa/op50n.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/pa/op50n.ld -------------------------------------------------------------------------------- /newlib/libgloss/pa/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/pa/setjmp.S -------------------------------------------------------------------------------- /newlib/libgloss/pa/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/pa/test.c -------------------------------------------------------------------------------- /newlib/libgloss/pa/w89k-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/pa/w89k-io.c -------------------------------------------------------------------------------- /newlib/libgloss/pa/w89k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/pa/w89k.h -------------------------------------------------------------------------------- /newlib/libgloss/pa/w89k.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/pa/w89k.ld -------------------------------------------------------------------------------- /newlib/libgloss/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/print.c -------------------------------------------------------------------------------- /newlib/libgloss/putnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/putnum.c -------------------------------------------------------------------------------- /newlib/libgloss/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/read.c -------------------------------------------------------------------------------- /newlib/libgloss/rl78/abort.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/abort.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/argv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/argv.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/chdir.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/chdir.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/chmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/chmod.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/close.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/crtn.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/exit.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/fstat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/fstat.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/gcrt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/gcrt0.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/kill.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/kill.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/link.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/link.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/lseek.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/lseek.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/open.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/open.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/read.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/read.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/rl78.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/rl78.ld -------------------------------------------------------------------------------- /newlib/libgloss/rl78/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/rl78/stat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/stat.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/time.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/time.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/times.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/times.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/utime.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/utime.S -------------------------------------------------------------------------------- /newlib/libgloss/rl78/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rl78/write.c -------------------------------------------------------------------------------- /newlib/libgloss/rx/abort.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/abort.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/argv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/argv.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/argvlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/argvlen.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/chdir.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/chdir.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/chmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/chmod.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/close.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/configure -------------------------------------------------------------------------------- /newlib/libgloss/rx/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/crtn.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/exit.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/fstat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/fstat.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/gcrt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/gcrt0.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/getpid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/getpid.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/heaptop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/heaptop.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/isatty.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/isatty.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/kill.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/kill.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/link.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/link.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/lseek.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/lseek.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/mcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/mcount.c -------------------------------------------------------------------------------- /newlib/libgloss/rx/open.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/open.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/read.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/read.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/rx-sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/rx-sim.ld -------------------------------------------------------------------------------- /newlib/libgloss/rx/rx.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/rx.ld -------------------------------------------------------------------------------- /newlib/libgloss/rx/rxsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/rxsys.h -------------------------------------------------------------------------------- /newlib/libgloss/rx/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/rx/sleep.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/sleep.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/stat.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/stat.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/time.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/time.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/times.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/times.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/unlink.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/unlink.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/utime.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/utime.S -------------------------------------------------------------------------------- /newlib/libgloss/rx/write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/rx/write.S -------------------------------------------------------------------------------- /newlib/libgloss/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/sh/sh3bb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/sh/sh3bb.ld -------------------------------------------------------------------------------- /newlib/libgloss/sparc/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/sparc/asm.h -------------------------------------------------------------------------------- /newlib/libgloss/sparc/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/sparc/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/sparc/dtor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/sparc/dtor.C -------------------------------------------------------------------------------- /newlib/libgloss/sparc/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/sparc/test.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/access.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/chdir.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/chmod.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/chown.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/close.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/spu/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/crti.S -------------------------------------------------------------------------------- /newlib/libgloss/spu/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/crtn.S -------------------------------------------------------------------------------- /newlib/libgloss/spu/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/dup.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/dup2.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/exit.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/fchdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/fchdir.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/fchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/fchmod.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/fchown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/fchown.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/fstat.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/fsync.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/getcwd.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/getpid.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/isatty.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/jsre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/jsre.h -------------------------------------------------------------------------------- /newlib/libgloss/spu/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/lchown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/lchown.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/link.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/lockf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/lockf.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/lseek.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/lstat.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/mkdir.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/mknod.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/mktemp.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/open.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/pread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/pread.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/pwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/pwrite.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/read.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/readv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/readv.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/rmdir.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/sync.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/times.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/umask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/umask.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/unlink.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/utime.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/utimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/utimes.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/write.c -------------------------------------------------------------------------------- /newlib/libgloss/spu/writev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/spu/writev.c -------------------------------------------------------------------------------- /newlib/libgloss/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/syscall.h -------------------------------------------------------------------------------- /newlib/libgloss/testsuite/config/m68k.mt: -------------------------------------------------------------------------------- 1 | MULTILIB= 2 | GLOSSDIR=m68k 3 | SCRIPTS=mvme135 idp 4 | -------------------------------------------------------------------------------- /newlib/libgloss/testsuite/config/mips.mt: -------------------------------------------------------------------------------- 1 | MULTILIB= 2 | GLOSSDIR=mips 3 | SCRIPTS=array 4 | -------------------------------------------------------------------------------- /newlib/libgloss/tic6x/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/tic6x/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/tic6x/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/tic6x/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/tic6x/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/tic6x/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/unlink.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/_exit.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/chmod.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/chown.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/close.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/creat.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/v850/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/crt1.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/execv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/execv.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/fork.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/fstat.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/kill.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/link.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/lseek.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/open.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/pipe.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/read.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/sim.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/sim.ld -------------------------------------------------------------------------------- /newlib/libgloss/v850/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/stat.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/time.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/times.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/trap.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/trap.S -------------------------------------------------------------------------------- /newlib/libgloss/v850/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/utime.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/wait.c -------------------------------------------------------------------------------- /newlib/libgloss/v850/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/v850/write.c -------------------------------------------------------------------------------- /newlib/libgloss/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/write.c -------------------------------------------------------------------------------- /newlib/libgloss/xc16x/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/xc16x/crt0.S -------------------------------------------------------------------------------- /newlib/libgloss/xc16x/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/xc16x/misc.c -------------------------------------------------------------------------------- /newlib/libgloss/xc16x/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/xc16x/open.c -------------------------------------------------------------------------------- /newlib/libgloss/xc16x/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/xc16x/read.c -------------------------------------------------------------------------------- /newlib/libgloss/xc16x/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libgloss/xc16x/sbrk.c -------------------------------------------------------------------------------- /newlib/libgloss/xc16x/sys/syscall.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /newlib/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/libtool.m4 -------------------------------------------------------------------------------- /newlib/ltgcc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/ltgcc.m4 -------------------------------------------------------------------------------- /newlib/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/ltmain.sh -------------------------------------------------------------------------------- /newlib/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/ltoptions.m4 -------------------------------------------------------------------------------- /newlib/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/ltsugar.m4 -------------------------------------------------------------------------------- /newlib/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/ltversion.m4 -------------------------------------------------------------------------------- /newlib/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/lt~obsolete.m4 -------------------------------------------------------------------------------- /newlib/makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/makefile.vms -------------------------------------------------------------------------------- /newlib/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/missing -------------------------------------------------------------------------------- /newlib/mkdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/mkdep -------------------------------------------------------------------------------- /newlib/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/mkinstalldirs -------------------------------------------------------------------------------- /newlib/move-if-change: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/move-if-change -------------------------------------------------------------------------------- /newlib/newlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/ChangeLog -------------------------------------------------------------------------------- /newlib/newlib/HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/HOWTO -------------------------------------------------------------------------------- /newlib/newlib/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/MAINTAINERS -------------------------------------------------------------------------------- /newlib/newlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/Makefile.am -------------------------------------------------------------------------------- /newlib/newlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/Makefile.in -------------------------------------------------------------------------------- /newlib/newlib/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/NEWS -------------------------------------------------------------------------------- /newlib/newlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/README -------------------------------------------------------------------------------- /newlib/newlib/acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/acconfig.h -------------------------------------------------------------------------------- /newlib/newlib/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/acinclude.m4 -------------------------------------------------------------------------------- /newlib/newlib/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/aclocal.m4 -------------------------------------------------------------------------------- /newlib/newlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/configure -------------------------------------------------------------------------------- /newlib/newlib/configure.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/configure.host -------------------------------------------------------------------------------- /newlib/newlib/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/configure.in -------------------------------------------------------------------------------- /newlib/newlib/confsubdir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/confsubdir.m4 -------------------------------------------------------------------------------- /newlib/newlib/doc/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/doc/aclocal.m4 -------------------------------------------------------------------------------- /newlib/newlib/doc/ansidecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/doc/ansidecl.h -------------------------------------------------------------------------------- /newlib/newlib/doc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/doc/configure -------------------------------------------------------------------------------- /newlib/newlib/doc/doc.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/doc/doc.str -------------------------------------------------------------------------------- /newlib/newlib/doc/makedoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/doc/makedoc.c -------------------------------------------------------------------------------- /newlib/newlib/iconvdata/EUC-JP.irreversible: -------------------------------------------------------------------------------- 1 | 0x5C 0x00A5 2 | 0x7E 0x203E 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/argz/dummy.c: -------------------------------------------------------------------------------- 1 | /* empty stub to allow objectlist.awk.in to be created */ 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/libc/configure -------------------------------------------------------------------------------- /newlib/newlib/libc/include/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/include/machine/ansi.h: -------------------------------------------------------------------------------- 1 | /* dummy header file to support BSD compiler */ 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/include/machine/param.h: -------------------------------------------------------------------------------- 1 | /* Place holder for machine-specific param.h. */ 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/include/sys/custom_file.h: -------------------------------------------------------------------------------- 1 | #error System-specific custom_file.h is missing. 2 | 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/include/sys/file.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/machine/spu/vfiprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vfprintf.c" 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/machine/spu/vfiscanf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vfscanf.c" 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/machine/spu/viprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vprintf.c" 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/machine/spu/viscanf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vscanf.c" 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/machine/spu/vsiprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vsprintf.c" 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/machine/spu/vsiscanf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vsscanf.c" 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/machine/spu/vsniprintf.c: -------------------------------------------------------------------------------- 1 | #define INTEGER_ONLY 2 | #include "vsnprintf.c" 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/saber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/libc/saber -------------------------------------------------------------------------------- /newlib/newlib/libc/sys.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/libc/sys.tex -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/arc/dummy.S: -------------------------------------------------------------------------------- 1 | /* Dummy file to force .S.o suffix rule generation. */ 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/decstation/_main.c: -------------------------------------------------------------------------------- 1 | 2 | __main() 3 | { 4 | 5 | 6 | } 7 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/h8300hms/sys/syscall.h: -------------------------------------------------------------------------------- 1 | #define SYS_read 4 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/linux/dl/libintl.h: -------------------------------------------------------------------------------- 1 | #define N_(x) x 2 | 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/linux/hp-timing.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/linux/include/semaphore.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/linux/machine/i386/sysdep.h: -------------------------------------------------------------------------------- 1 | #define NO_UNDERSCORES 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/linux/net/issetugid-stub.c: -------------------------------------------------------------------------------- 1 | int 2 | issetugid(void) 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/linux/raise.c: -------------------------------------------------------------------------------- 1 | /* empty file so we override regular raise */ 2 | 3 | 4 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/linux/sethostid.c: -------------------------------------------------------------------------------- 1 | #define SET_PROCEDURE 1 2 | #include "gethostid.c" 3 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/linux/shlib-compat.h: -------------------------------------------------------------------------------- 1 | #define SHLIB_COMPAT(libc, introduced, obsoleted) 0 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/rtems/dummysys.c: -------------------------------------------------------------------------------- 1 | void not_required_by_rtems( void ) {} 2 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/sparc64/_main.c: -------------------------------------------------------------------------------- 1 | 2 | __main() 3 | { 4 | 5 | 6 | } 7 | -------------------------------------------------------------------------------- /newlib/newlib/libc/sys/sun4/_main.c: -------------------------------------------------------------------------------- 1 | 2 | __main() 3 | { 4 | 5 | 6 | } 7 | -------------------------------------------------------------------------------- /newlib/newlib/libc/xdr/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/libc/xdr/xdr.c -------------------------------------------------------------------------------- /newlib/newlib/libm/common/local.h: -------------------------------------------------------------------------------- 1 | /* placeholder for future usage. */ 2 | -------------------------------------------------------------------------------- /newlib/newlib/libm/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/libm/configure -------------------------------------------------------------------------------- /newlib/newlib/newlib.hin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/newlib/newlib.hin -------------------------------------------------------------------------------- /newlib/newlib/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /newlib/setup.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/setup.com -------------------------------------------------------------------------------- /newlib/src-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/src-release -------------------------------------------------------------------------------- /newlib/symlink-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/symlink-tree -------------------------------------------------------------------------------- /newlib/texinfo/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/texinfo/texinfo.tex -------------------------------------------------------------------------------- /newlib/ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/newlib/ylwrap -------------------------------------------------------------------------------- /regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/regdef.h -------------------------------------------------------------------------------- /stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Broadcom/aeolus/HEAD/stddef.h --------------------------------------------------------------------------------