├── .gitattributes ├── .gitignore ├── BUGS ├── CANCEL-FCT-WAIVE ├── CANCEL-FILE-WAIVE ├── CONFORMANCE ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── ChangeLog.1 ├── ChangeLog.10 ├── ChangeLog.11 ├── ChangeLog.12 ├── ChangeLog.13 ├── ChangeLog.14 ├── ChangeLog.15 ├── ChangeLog.16 ├── ChangeLog.17 ├── ChangeLog.2 ├── ChangeLog.3 ├── ChangeLog.4 ├── ChangeLog.5 ├── ChangeLog.6 ├── ChangeLog.7 ├── ChangeLog.8 ├── ChangeLog.9 ├── ChangeLog.eglibc ├── EGLIBC.cross-building ├── EGLIBC.cross-testing ├── EGLIBC.option-groups ├── INSTALL ├── LICENSES ├── Makeconfig ├── Makefile ├── Makefile.in ├── Makerules ├── NAMESPACE ├── NEWS ├── PROJECTS ├── README ├── Rules ├── Versions.def ├── WUR-REPORT ├── abi-tags ├── aclocal.m4 ├── argp ├── Makefile ├── Versions ├── 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-test.c ├── argp-xinl.c ├── argp.h ├── bug-argp1.c ├── bug-argp2.c ├── tst-argp1.c └── tst-argp2.c ├── assert ├── Depend ├── Makefile ├── Versions ├── __assert.c ├── assert-perr.c ├── assert.c ├── assert.h ├── test-assert-perr.c └── test-assert.c ├── benchtests ├── Makefile ├── README ├── acos-inputs ├── acosh-inputs ├── asin-inputs ├── asinh-inputs ├── atan-inputs ├── atanh-inputs ├── bench-bcopy-ifunc.c ├── bench-bcopy.c ├── bench-bzero-ifunc.c ├── bench-bzero.c ├── bench-memccpy-ifunc.c ├── bench-memccpy.c ├── bench-memchr-ifunc.c ├── bench-memchr.c ├── bench-memcmp-ifunc.c ├── bench-memcmp.c ├── bench-memcpy-ifunc.c ├── bench-memcpy.c ├── bench-memmem-ifunc.c ├── bench-memmem.c ├── bench-memmove-ifunc.c ├── bench-memmove.c ├── bench-mempcpy-ifunc.c ├── bench-mempcpy.c ├── bench-memset-ifunc.c ├── bench-memset.c ├── bench-modf.c ├── bench-rawmemchr-ifunc.c ├── bench-rawmemchr.c ├── bench-skeleton.c ├── bench-stpcpy-ifunc.c ├── bench-stpcpy.c ├── bench-stpcpy_chk-ifunc.c ├── bench-stpcpy_chk.c ├── bench-stpncpy-ifunc.c ├── bench-stpncpy.c ├── bench-strcasecmp-ifunc.c ├── bench-strcasecmp.c ├── bench-strcasestr-ifunc.c ├── bench-strcasestr.c ├── bench-strcat-ifunc.c ├── bench-strcat.c ├── bench-strchr-ifunc.c ├── bench-strchr.c ├── bench-strchrnul-ifunc.c ├── bench-strchrnul.c ├── bench-strcmp-ifunc.c ├── bench-strcmp.c ├── bench-strcpy-ifunc.c ├── bench-strcpy.c ├── bench-strcpy_chk-ifunc.c ├── bench-strcpy_chk.c ├── bench-strcspn-ifunc.c ├── bench-strcspn.c ├── bench-string.h ├── bench-strlen-ifunc.c ├── bench-strlen.c ├── bench-strncasecmp-ifunc.c ├── bench-strncasecmp.c ├── bench-strncat-ifunc.c ├── bench-strncat.c ├── bench-strncmp-ifunc.c ├── bench-strncmp.c ├── bench-strncpy-ifunc.c ├── bench-strncpy.c ├── bench-strnlen-ifunc.c ├── bench-strnlen.c ├── bench-strpbrk-ifunc.c ├── bench-strpbrk.c ├── bench-strrchr-ifunc.c ├── bench-strrchr.c ├── bench-strspn-ifunc.c ├── bench-strspn.c ├── bench-strstr-ifunc.c ├── bench-strstr.c ├── bench-timing.h ├── cos-inputs ├── cosh-inputs ├── exp-inputs ├── log-inputs ├── pow-inputs ├── rint-inputs ├── sin-inputs ├── sinh-inputs ├── tan-inputs └── tanh-inputs ├── bits ├── atomic.h ├── byteswap-16.h ├── byteswap.h ├── confname.h ├── dirent.h ├── dlfcn.h ├── elfclass.h ├── endian.h ├── environments.h ├── errno.h ├── fcntl.h ├── fenv.h ├── fenvinline.h ├── huge_val.h ├── huge_valf.h ├── huge_vall.h ├── in.h ├── inf.h ├── ioctl-types.h ├── ioctls.h ├── ipc.h ├── ipctypes.h ├── libc-lock.h ├── libc-tsd.h ├── link.h ├── linkmap.h ├── local_lim.h ├── mathdef.h ├── mathinline.h ├── mman.h ├── mqueue.h ├── msq.h ├── nan.h ├── netdb.h ├── param.h ├── poll.h ├── posix_opt.h ├── predefs.h ├── pthreadtypes.h ├── resource.h ├── sched.h ├── select.h ├── sem.h ├── setjmp.h ├── shm.h ├── sigaction.h ├── sigcontext.h ├── siginfo.h ├── signum.h ├── sigset.h ├── sigstack.h ├── sigthread.h ├── sockaddr.h ├── socket.h ├── stat.h ├── statfs.h ├── statvfs.h ├── stdio-lock.h ├── stdlib-bsearch.h ├── string.h ├── stropts.h ├── sys_errlist.h ├── syslog-path.h ├── termios.h ├── time.h ├── types.h ├── typesizes.h ├── uio.h ├── ustat.h ├── utmp.h ├── utsname.h ├── waitflags.h ├── waitstatus.h ├── wchar.h ├── wordsize.h └── xtitypes.h ├── catgets ├── Depend ├── Makefile ├── Versions ├── catgets.c ├── catgetsinfo.h ├── config.h ├── gencat.c ├── nl_types.h ├── open_catalog.c ├── sample.SJIS ├── test-gencat.c ├── test-gencat.sh ├── test1.msg ├── test2.msg ├── tst-catgets.c └── xopen-msg.awk ├── conf └── portability.h ├── config.h.in ├── config.make.in ├── configure ├── configure.in ├── conform ├── Makefile ├── conformtest.pl ├── data │ ├── aio.h-data │ ├── arpa │ │ └── inet.h-data │ ├── assert.h-data │ ├── complex.h-data │ ├── cpio.h-data │ ├── ctype.h-data │ ├── dirent.h-data │ ├── dlfcn.h-data │ ├── errno.h-data │ ├── fcntl.h-data │ ├── fenv.h-data │ ├── float.h-data │ ├── fmtmsg.h-data │ ├── fnmatch.h-data │ ├── ftw.h-data │ ├── glob.h-data │ ├── grp.h-data │ ├── iconv.h-data │ ├── inttypes.h-data │ ├── iso646.h-data │ ├── langinfo.h-data │ ├── libgen.h-data │ ├── limits.h-data │ ├── locale.h-data │ ├── math.h-data │ ├── monetary.h-data │ ├── mqueue.h-data │ ├── ndbm.h-data │ ├── net │ │ └── if.h-data │ ├── netdb.h-data │ ├── netinet │ │ ├── in.h-data │ │ └── tcp.h-data │ ├── nl_types.h-data │ ├── poll.h-data │ ├── pthread.h-data │ ├── pwd.h-data │ ├── regex.h-data │ ├── sched.h-data │ ├── search.h-data │ ├── semaphore.h-data │ ├── setjmp.h-data │ ├── signal.h-data │ ├── spawn.h-data │ ├── stdalign.h-data │ ├── stdarg.h-data │ ├── stdbool.h-data │ ├── stddef.h-data │ ├── stdint.h-data │ ├── stdio.h-data │ ├── stdlib.h-data │ ├── stdnoreturn.h-data │ ├── string.h-data │ ├── strings.h-data │ ├── stropts.h-data │ ├── sys │ │ ├── ipc.h-data │ │ ├── mman.h-data │ │ ├── msg.h-data │ │ ├── resource.h-data │ │ ├── select.h-data │ │ ├── sem.h-data │ │ ├── shm.h-data │ │ ├── socket.h-data │ │ ├── stat.h-data │ │ ├── statvfs.h-data │ │ ├── time.h-data │ │ ├── timeb.h-data │ │ ├── times.h-data │ │ ├── types.h-data │ │ ├── uio.h-data │ │ ├── un.h-data │ │ ├── utsname.h-data │ │ └── wait.h-data │ ├── syslog.h-data │ ├── tar.h-data │ ├── termios.h-data │ ├── tgmath.h-data │ ├── time.h-data │ ├── uchar.h-data │ ├── ucontext.h-data │ ├── ulimit.h-data │ ├── unistd.h-data │ ├── utime.h-data │ ├── utmpx.h-data │ ├── varargs.h-data │ ├── wchar.h-data │ ├── wctype.h-data │ └── wordexp.h-data └── run-conformtest.sh ├── cppflags-iterator.mk ├── crypt ├── Banner ├── Makefile ├── README.ufc-crypt ├── Versions ├── badsalttest.c ├── cert.c ├── cert.input ├── crypt-entry.c ├── crypt-private.h ├── crypt.c ├── crypt.h ├── crypt_util.c ├── md5-block.c ├── md5-crypt.c ├── md5.c ├── md5.h ├── md5c-test.c ├── md5test-giant.c ├── md5test.c ├── sha256-block.c ├── sha256-crypt.c ├── sha256.c ├── sha256.h ├── sha256c-test.c ├── sha256test.c ├── sha512-block.c ├── sha512-crypt.c ├── sha512.c ├── sha512.h ├── sha512c-test.c ├── sha512test.c ├── speeds.c ├── ufc-crypt.h └── ufc.c ├── csu ├── Makefile ├── Versions ├── abi-note.S ├── check_fds.c ├── dso_handle.c ├── elf-init.c ├── errno-loc.c ├── errno.c ├── gmon-start.c ├── init-first.c ├── init.c ├── libc-start.c ├── libc-tls.c ├── start.c ├── sysdep.c ├── tst-atomic-long.c ├── tst-atomic.c ├── tst-empty.c └── version.c ├── ctype ├── Makefile ├── Versions ├── ctype-extn.c ├── ctype-info.c ├── ctype.c ├── ctype.h ├── ctype_l.c ├── isctype.c └── test_ctype.c ├── debug ├── Depend ├── Makefile ├── Versions ├── asprintf_chk.c ├── backtrace-tst.c ├── backtrace.c ├── backtracesyms.c ├── backtracesymsfd.c ├── catchsegv.sh ├── chk_fail.c ├── confstr_chk.c ├── dprintf_chk.c ├── execinfo.h ├── fdelt_chk.c ├── fgets_chk.c ├── fgets_u_chk.c ├── fgetws_chk.c ├── fgetws_u_chk.c ├── fortify_fail.c ├── fprintf_chk.c ├── fread_chk.c ├── fread_u_chk.c ├── fwprintf_chk.c ├── getcwd_chk.c ├── getdomainname_chk.c ├── getgroups_chk.c ├── gethostname_chk.c ├── gets_chk.c ├── getwd_chk.c ├── longjmp_chk.c ├── mbsnrtowcs_chk.c ├── mbsrtowcs_chk.c ├── mbstowcs_chk.c ├── memcpy_chk.c ├── memmove_chk.c ├── mempcpy_chk.c ├── memset_chk.c ├── noophooks.c ├── obprintf_chk.c ├── pcprofile.c ├── pcprofiledump.c ├── poll_chk.c ├── ppoll_chk.c ├── pread64_chk.c ├── pread_chk.c ├── printf_chk.c ├── read_chk.c ├── readlink_chk.c ├── readlinkat_chk.c ├── readonly-area.c ├── realpath_chk.c ├── recv_chk.c ├── recvfrom_chk.c ├── segfault.c ├── snprintf_chk.c ├── sprintf_chk.c ├── stack_chk_fail.c ├── stack_chk_fail_local.c ├── stpcpy_chk.c ├── stpncpy_chk.c ├── strcat_chk.c ├── strcpy_chk.c ├── strncat_chk.c ├── strncpy_chk.c ├── swprintf_chk.c ├── test-stpcpy_chk-ifunc.c ├── test-stpcpy_chk.c ├── test-strcpy_chk-ifunc.c ├── test-strcpy_chk.c ├── tst-backtrace.h ├── tst-backtrace2.c ├── tst-backtrace3.c ├── tst-backtrace4.c ├── tst-backtrace5.c ├── tst-backtrace6.c ├── tst-chk1.c ├── tst-chk2.c ├── tst-chk3.c ├── tst-chk4.cc ├── tst-chk5.cc ├── tst-chk6.cc ├── tst-lfschk1.c ├── tst-lfschk2.c ├── tst-lfschk3.c ├── tst-lfschk4.cc ├── tst-lfschk5.cc ├── tst-lfschk6.cc ├── tst-longjmp_chk.c ├── tst-longjmp_chk2.c ├── ttyname_r_chk.c ├── vasprintf_chk.c ├── vdprintf_chk.c ├── vfprintf_chk.c ├── vfwprintf_chk.c ├── vprintf_chk.c ├── vsnprintf_chk.c ├── vsprintf_chk.c ├── vswprintf_chk.c ├── vwprintf_chk.c ├── warning-nop.c ├── wcpcpy_chk.c ├── wcpncpy_chk.c ├── wcrtomb_chk.c ├── wcscat_chk.c ├── wcscpy_chk.c ├── wcsncat_chk.c ├── wcsncpy_chk.c ├── wcsnrtombs_chk.c ├── wcsrtombs_chk.c ├── wcstombs_chk.c ├── wctomb_chk.c ├── wmemcpy_chk.c ├── wmemmove_chk.c ├── wmempcpy_chk.c ├── wmemset_chk.c ├── wprintf_chk.c └── xtrace.sh ├── dirent ├── Makefile ├── Versions ├── alphasort.c ├── alphasort64.c ├── bug-readdir1.c ├── closedir.c ├── dirent.h ├── dirfd.c ├── fdopendir.c ├── getdents.c ├── getdents64.c ├── list.c ├── opendir-tst1.c ├── opendir.c ├── readdir.c ├── readdir64.c ├── readdir64_r.c ├── readdir_r.c ├── rewinddir.c ├── scandir.c ├── scandir64.c ├── scandirat.c ├── scandirat64.c ├── seekdir.c ├── telldir.c ├── tst-fdopendir.c ├── tst-fdopendir2.c ├── tst-seekdir.c ├── versionsort.c └── versionsort64.c ├── dlfcn ├── Makefile ├── Versions ├── bug-atexit1-lib.c ├── bug-atexit1.c ├── bug-atexit2-lib.c ├── bug-atexit2.c ├── bug-atexit3-lib.cc ├── bug-atexit3.c ├── bug-dlopen1.c ├── bug-dlsym1-lib1.c ├── bug-dlsym1-lib2.c ├── bug-dlsym1.c ├── default.c ├── defaultmod1.c ├── defaultmod2.c ├── dladdr.c ├── dladdr1.c ├── dlclose.c ├── dlerror.c ├── dlfcn.c ├── dlfcn.h ├── dlinfo.c ├── dlmopen.c ├── dlopen.c ├── dlopenold.c ├── dlsym.c ├── dlvsym.c ├── errmsg1.c ├── errmsg1mod.c ├── eval.c ├── failtest.c ├── failtestmod.c ├── glreflib1.c ├── glreflib2.c ├── glreflib3.c ├── glrefmain.c ├── modatexit.c ├── modcxaatexit.c ├── modstatic.c ├── modstatic2.c ├── modstatic3.c ├── modstatic5.c ├── sdladdr.c ├── sdladdr1.c ├── sdlclose.c ├── sdlerror.c ├── sdlinfo.c ├── sdlmopen.c ├── sdlopen.c ├── sdlsym.c ├── sdlvsym.c ├── tst-dladdr.c ├── tst-dlinfo.c ├── tstatexit.c ├── tstcxaatexit.c ├── tststatic.c ├── tststatic2.c ├── tststatic3.c ├── tststatic4.c └── tststatic5.c ├── elf ├── Makefile ├── Versions ├── cache.c ├── chroot_canon.c ├── circleload1.c ├── circlemod1.c ├── circlemod1a.c ├── circlemod2.c ├── circlemod2a.c ├── circlemod3.c ├── circlemod3a.c ├── constload1.c ├── constload2.c ├── constload3.c ├── dblload.c ├── dblloadmod1.c ├── dblloadmod2.c ├── dblloadmod3.c ├── dblunload.c ├── dep1.c ├── dep2.c ├── dep3.c ├── dep4.c ├── dl-addr.c ├── dl-brk.c ├── dl-cache.c ├── dl-caller.c ├── dl-close.c ├── dl-conflict.c ├── dl-debug.c ├── dl-deps.c ├── dl-dst.h ├── dl-environ.c ├── dl-error.c ├── dl-execstack.c ├── dl-fini.c ├── dl-fptr.c ├── dl-hwcaps.c ├── dl-init.c ├── dl-iteratephdr.c ├── dl-libc.c ├── dl-load.c ├── dl-lookup.c ├── dl-minimal.c ├── dl-misc.c ├── dl-object.c ├── dl-open.c ├── dl-origin.c ├── dl-profile.c ├── dl-profstub.c ├── dl-reloc.c ├── dl-runtime.c ├── dl-sbrk.c ├── dl-scope.c ├── dl-support.c ├── dl-sym.c ├── dl-symaddr.c ├── dl-sysdep.c ├── dl-tls.c ├── dl-trampoline.c ├── dl-tsd.c ├── dl-version.c ├── dl-writev.h ├── do-rel.h ├── dynamic-link.h ├── elf.h ├── enbl-secure.c ├── failobj.c ├── filter.c ├── filtmod1.c ├── filtmod2.c ├── firstobj.c ├── gen-trusted-dirs.awk ├── genrtldtbl.awk ├── get-dynamic-info.h ├── global.c ├── globalmod1.c ├── ifuncdep1.c ├── ifuncdep1pic.c ├── ifuncdep2.c ├── ifuncdep2pic.c ├── ifuncdep5.c ├── ifuncdep5pic.c ├── ifuncmain1.c ├── ifuncmain1pic.c ├── ifuncmain1picstatic.c ├── ifuncmain1pie.c ├── ifuncmain1static.c ├── ifuncmain1staticpic.c ├── ifuncmain1staticpie.c ├── ifuncmain1vis.c ├── ifuncmain1vispic.c ├── ifuncmain1vispie.c ├── ifuncmain2.c ├── ifuncmain2pic.c ├── ifuncmain2picstatic.c ├── ifuncmain2static.c ├── ifuncmain3.c ├── ifuncmain4.c ├── ifuncmain4picstatic.c ├── ifuncmain4static.c ├── ifuncmain5.c ├── ifuncmain5pic.c ├── ifuncmain5picstatic.c ├── ifuncmain5pie.c ├── ifuncmain5static.c ├── ifuncmain5staticpic.c ├── ifuncmain6pie.c ├── ifuncmain7.c ├── ifuncmain7pic.c ├── ifuncmain7picstatic.c ├── ifuncmain7pie.c ├── ifuncmain7static.c ├── ifuncmod1.c ├── ifuncmod3.c ├── ifuncmod5.c ├── ifuncmod6.c ├── initfirst.c ├── interp.c ├── lateglobal.c ├── ldconfig.c ├── ldd.bash.in ├── link.h ├── loadfail.c ├── loadtest.c ├── ltglobmod1.c ├── ltglobmod2.c ├── multiload.c ├── neededobj1.c ├── neededobj2.c ├── neededobj3.c ├── neededobj4.c ├── neededobj5.c ├── neededobj6.c ├── neededtest.c ├── neededtest2.c ├── neededtest3.c ├── neededtest4.c ├── next.c ├── nextmod1.c ├── nextmod2.c ├── nodel2mod1.c ├── nodel2mod2.c ├── nodel2mod3.c ├── nodelete.c ├── nodelete2.c ├── nodelmod1.c ├── nodelmod2.c ├── nodelmod3.c ├── nodelmod4.c ├── nodlopen.c ├── nodlopen2.c ├── nodlopenmod.c ├── nodlopenmod2.c ├── noload.c ├── order.c ├── order2.c ├── order2mod1.c ├── order2mod2.c ├── order2mod3.c ├── order2mod4.c ├── origtest.c ├── pathoptobj.c ├── pldd-xx.c ├── pldd.c ├── preloadtest.c ├── readelflib.c ├── readlib.c ├── reldep.c ├── reldep2.c ├── reldep3.c ├── reldep4.c ├── reldep4mod1.c ├── reldep4mod2.c ├── reldep4mod3.c ├── reldep4mod4.c ├── reldep5.c ├── reldep6.c ├── reldep6mod0.c ├── reldep6mod1.c ├── reldep6mod2.c ├── reldep6mod3.c ├── reldep6mod4.c ├── reldep7.c ├── reldep7mod1.c ├── reldep7mod2.c ├── reldep8.c ├── reldep8mod1.c ├── reldep8mod2.c ├── reldep8mod3.c ├── reldep9.c ├── reldep9mod1.c ├── reldep9mod2.c ├── reldep9mod3.c ├── reldepmod1.c ├── reldepmod2.c ├── reldepmod3.c ├── reldepmod4.c ├── reldepmod5.c ├── reldepmod6.c ├── resolvfail.c ├── restest1.c ├── restest2.c ├── rtld-Rules ├── rtld-debugger-interface.txt ├── rtld.c ├── setup-vdso.h ├── sln.c ├── sofini.c ├── soinit.c ├── sotruss-lib.c ├── sotruss.ksh ├── sprof.c ├── static-stubs.c ├── testobj.h ├── testobj1.c ├── testobj1_1.c ├── testobj2.c ├── testobj3.c ├── testobj4.c ├── testobj5.c ├── testobj6.c ├── tls-macros.h ├── tlsdeschtab.h ├── tst-addr1.c ├── tst-align.c ├── tst-align2.c ├── tst-alignmod.c ├── tst-alignmod2.c ├── tst-array1-static.c ├── tst-array1.c ├── tst-array1.exp ├── tst-array2.c ├── tst-array2.exp ├── tst-array2dep.c ├── tst-array3.c ├── tst-array4.c ├── tst-array4.exp ├── tst-array5-static.c ├── tst-array5-static.exp ├── tst-array5.c ├── tst-array5.exp ├── tst-array5dep.c ├── tst-audit1.c ├── tst-audit2.c ├── tst-audit8.c ├── tst-auditmod1.c ├── tst-deep1.c ├── tst-deep1mod1.c ├── tst-deep1mod2.c ├── tst-deep1mod3.c ├── tst-dlmodcount.c ├── tst-dlmopen1.c ├── tst-dlmopen1mod.c ├── tst-dlmopen2.c ├── tst-dlmopen3.c ├── tst-dlopenrpath.c ├── tst-dlopenrpathmod.c ├── tst-execstack-mod.c ├── tst-execstack-needed.c ├── tst-execstack-prog.c ├── tst-execstack.c ├── tst-global1.c ├── tst-initorder.c ├── tst-initorder.exp ├── tst-initorder2.c ├── tst-initorder2.exp ├── tst-initordera1.c ├── tst-initordera2.c ├── tst-initordera3.c ├── tst-initordera4.c ├── tst-initorderb1.c ├── tst-initorderb2.c ├── tst-leaks1-static.c ├── tst-leaks1.c ├── tst-null-argv-lib.c ├── tst-null-argv.c ├── tst-order-a1.c ├── tst-order-a2.c ├── tst-order-a3.c ├── tst-order-a4.c ├── tst-order-b1.c ├── tst-order-b2.c ├── tst-order-main.c ├── tst-pathopt.c ├── tst-pathopt.sh ├── tst-pie1.c ├── tst-piemod1.c ├── tst-relsort1.c ├── tst-relsort1mod1.c ├── tst-relsort1mod2.c ├── tst-rtld-load-self.sh ├── tst-stackguard1-static.c ├── tst-stackguard1.c ├── tst-thrlock.c ├── tst-tls-dlinfo.c ├── tst-tls1-static.c ├── tst-tls1.c ├── tst-tls10.c ├── tst-tls10.h ├── tst-tls11.c ├── tst-tls12.c ├── tst-tls13.c ├── tst-tls14.c ├── tst-tls15.c ├── tst-tls16.c ├── tst-tls17.c ├── tst-tls18.c ├── tst-tls19.c ├── tst-tls19mod1.c ├── tst-tls19mod2.c ├── tst-tls19mod3.c ├── tst-tls2-static.c ├── tst-tls2.c ├── tst-tls3.c ├── tst-tls4.c ├── tst-tls5.c ├── tst-tls6.c ├── tst-tls7.c ├── tst-tls8.c ├── tst-tls9-static.c ├── tst-tls9.c ├── tst-tlsmod1.c ├── tst-tlsmod10.c ├── tst-tlsmod11.c ├── tst-tlsmod12.c ├── tst-tlsmod13.c ├── tst-tlsmod13a.c ├── tst-tlsmod14a.c ├── tst-tlsmod14b.c ├── tst-tlsmod15a.c ├── tst-tlsmod15b.c ├── tst-tlsmod16a.c ├── tst-tlsmod16b.c ├── tst-tlsmod17a.c ├── tst-tlsmod17b.c ├── tst-tlsmod18a.c ├── tst-tlsmod2.c ├── tst-tlsmod3.c ├── tst-tlsmod4.c ├── tst-tlsmod5.c ├── tst-tlsmod6.c ├── tst-tlsmod7.c ├── tst-tlsmod8.c ├── tst-tlsmod9.c ├── tst-unique1.c ├── tst-unique1mod1.c ├── tst-unique1mod2.c ├── tst-unique2.c ├── tst-unique2mod1.c ├── tst-unique2mod2.c ├── tst-unique3.cc ├── tst-unique3.h ├── tst-unique3lib.cc ├── tst-unique3lib2.cc ├── tst-unique4.cc ├── tst-unique4.h ├── tst-unique4lib.cc ├── unload.c ├── unload2.c ├── unload2dep.c ├── unload2mod.c ├── unload3.c ├── unload3mod1.c ├── unload3mod2.c ├── unload3mod3.c ├── unload3mod4.c ├── unload4.c ├── unload4mod1.c ├── unload4mod2.c ├── unload4mod3.c ├── unload4mod4.c ├── unload5.c ├── unload6.c ├── unload6mod1.c ├── unload6mod2.c ├── unload6mod3.c ├── unload7.c ├── unload7mod1.c ├── unload7mod2.c ├── unload8.c ├── unload8mod1.c ├── unload8mod1x.c ├── unload8mod2.c ├── unload8mod3.c ├── unloadmod.c ├── vismain.c ├── vismod.h ├── vismod1.c ├── vismod2.c └── vismod3.c ├── extra-lib.mk ├── extra-modules.mk ├── gmon ├── Makefile ├── Versions ├── bb_exit_func.c ├── bb_init_func.c ├── gmon.c ├── mcount.c ├── prof-freq.c ├── profil.c ├── sprofil.c ├── sys │ ├── gmon.h │ ├── gmon_out.h │ └── profil.h ├── tst-profile-static.c └── tst-sprofil.c ├── gnulib ├── Makefile └── tst-gcc.c ├── grp ├── Makefile ├── Versions ├── compat-initgroups.c ├── fgetgrent.c ├── fgetgrent_r.c ├── getgrent.c ├── getgrent_r.c ├── getgrgid.c ├── getgrgid_r.c ├── getgrnam.c ├── getgrnam_r.c ├── grp.h ├── initgroups.c ├── putgrent.c ├── setgroups.c ├── testgrp.c ├── tst_fgetgrent.c └── tst_fgetgrent.sh ├── gshadow ├── Makefile ├── Versions ├── fgetsgent.c ├── fgetsgent_r.c ├── getsgent.c ├── getsgent_r.c ├── getsgnam.c ├── getsgnam_r.c ├── gshadow.h ├── putsgent.c ├── sgetsgent.c ├── sgetsgent_r.c └── tst-gshadow.c ├── hesiod ├── Depend ├── Makefile ├── README.hesiod ├── Versions ├── hesiod.c ├── hesiod.h ├── hesiod_p.h └── nss_hesiod │ ├── hesiod-grp.c │ ├── hesiod-init.c │ ├── hesiod-proto.c │ ├── hesiod-pwd.c │ ├── hesiod-service.c │ └── nss_hesiod.h ├── hurd ├── Depend ├── Makefile ├── Notes ├── Versions ├── alloc-fd.c ├── catch-exc.c ├── catch-signal.c ├── compat-20.c ├── ctty-input.c ├── ctty-output.c ├── dtable.c ├── exc2signal.c ├── faultexc.defs ├── fchroot.c ├── fd-close.c ├── fd-read.c ├── fd-write.c ├── fopenport.c ├── get-host.c ├── getdport.c ├── geteuids.c ├── getumask.c ├── hurd-raise.c ├── hurd.h ├── hurd │ ├── fd.h │ ├── id.h │ ├── ioctl.h │ ├── lookup.h │ ├── port.h │ ├── resource.h │ ├── signal.h │ ├── sigpreempt.h │ ├── threadvar.h │ ├── userlink.h │ └── xattr.h ├── hurdauth.c ├── hurdchdir.c ├── hurdexec.c ├── hurdfault.c ├── hurdfault.h ├── hurdfchdir.c ├── hurdhost.h ├── hurdid.c ├── hurdinit.c ├── hurdioctl.c ├── hurdkill.c ├── hurdlookup.c ├── hurdmalloc.c ├── hurdmalloc.h ├── hurdmsg.c ├── hurdpid.c ├── hurdports.c ├── hurdprio.c ├── hurdrlimit.c ├── hurdselect.c ├── hurdsig.c ├── hurdsock.c ├── hurdstartup.c ├── hurdstartup.h ├── intern-fd.c ├── intr-msg.c ├── intr-rpc.defs ├── intr-rpc.h ├── longjmp-ts.c ├── lookup-at.c ├── lookup-retry.c ├── msgportdemux.c ├── new-fd.c ├── openport.c ├── path-lookup.c ├── pid2task.c ├── port-cleanup.c ├── port2fd.c ├── ports-get.c ├── ports-set.c ├── preempt-sig.c ├── privports.c ├── report-wait.c ├── set-host.c ├── setauth.c ├── seteuids.c ├── siginfo.c ├── sigunwind.c ├── task2pid.c ├── thread-cancel.c ├── thread-self.c ├── trampoline.c ├── vpprintf.c └── xattr.c ├── iconv ├── Makefile ├── Versions ├── dummy-repertoire.c ├── gconv.c ├── gconv.h ├── 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 ├── iconv.c ├── iconv.h ├── iconv_charmap.c ├── iconv_close.c ├── iconv_open.c ├── iconv_prog.c ├── iconv_prog.h ├── iconvconfig.c ├── iconvconfig.h ├── loop.c ├── skeleton.c ├── strtab.c ├── tst-iconv1.c ├── tst-iconv2.c ├── tst-iconv3.c ├── tst-iconv4.c └── tst-iconv5.c ├── iconvdata ├── 8bit-gap.c ├── 8bit-generic.c ├── ARMSCII-8.irreversible ├── BIG5.irreversible ├── BIG5HKSCS.irreversible ├── BIG5HKSCS.precomposed ├── CP1255.irreversible ├── CP1258.irreversible ├── CP932.irreversible ├── Depend ├── EUC-JISX0213.precomposed ├── EUC-JP-MS.irreversible ├── EUC-JP.irreversible ├── EUC-KR.irreversible ├── EUC-TW.irreversible ├── IBM1132.irreversible ├── IBM1133.irreversible ├── IBM1160.irreversible ├── IBM1161.irreversible ├── IBM1163.irreversible ├── IBM1164.irreversible ├── IBM856.irreversible ├── IBM922.irreversible ├── ISIRI-3342.irreversible ├── JISX0213.TXT ├── MISSING ├── Makefile ├── SHIFT_JISX0213.irreversible ├── SHIFT_JISX0213.precomposed ├── SJIS.irreversible ├── TCVN5712-1.precomposed ├── TESTS ├── TESTS2 ├── TSCII.irreversible ├── TSCII.precomposed ├── ansi_x3.110.c ├── armscii-8.c ├── asmo_449.c ├── big5.c ├── big5hkscs.c ├── brf.c ├── bug-iconv1.c ├── bug-iconv2.c ├── bug-iconv3.c ├── bug-iconv4.c ├── bug-iconv5.c ├── bug-iconv6.c ├── bug-iconv8.c ├── bug-iconv9.c ├── cns11643.c ├── cns11643.h ├── cns11643l1.c ├── cns11643l1.h ├── cns11643l2.h ├── cp10007.c ├── cp1125.c ├── cp1250.c ├── cp1251.c ├── cp1252.c ├── cp1253.c ├── cp1254.c ├── cp1255.c ├── cp1256.c ├── cp1257.c ├── cp1258.c ├── cp737.c ├── cp737.h ├── cp770.c ├── cp771.c ├── cp772.c ├── cp773.c ├── cp774.c ├── cp775.c ├── cp775.h ├── cp932.c ├── csn_369103.c ├── cwi.c ├── dec-mcs.c ├── ebcdic-at-de-a.c ├── ebcdic-at-de.c ├── ebcdic-ca-fr.c ├── ebcdic-dk-no-a.c ├── ebcdic-dk-no.c ├── ebcdic-es-a.c ├── ebcdic-es-s.c ├── ebcdic-es.c ├── ebcdic-fi-se-a.c ├── ebcdic-fi-se.c ├── ebcdic-fr.c ├── ebcdic-is-friss.c ├── ebcdic-it.c ├── ebcdic-pt.c ├── ebcdic-uk.c ├── ebcdic-us.c ├── ecma-cyrillic.c ├── euc-cn.c ├── euc-jisx0213.c ├── euc-jp-ms.c ├── euc-jp.c ├── euc-kr.c ├── euc-tw.c ├── extra-module.mk ├── gap.awk ├── gaptab.awk ├── gb18030.c ├── gb2312.c ├── gb2312.h ├── gbbig5.c ├── gbgbk.c ├── gbk.c ├── gconv-modules ├── gconv.map ├── gen-8bit-gap-1.sh ├── gen-8bit-gap.sh ├── gen-8bit.sh ├── georgian-academy.c ├── georgian-ps.c ├── gost_19768-74.c ├── greek-ccitt.c ├── greek7-old.c ├── greek7.c ├── hp-greek8.c ├── hp-roman8.c ├── hp-roman9.c ├── hp-thai8.c ├── hp-turkish8.c ├── ibm037.c ├── ibm038.c ├── ibm1004.c ├── ibm1008.c ├── ibm1008.h ├── ibm1008_420.c ├── ibm1025.c ├── ibm1025.h ├── ibm1026.c ├── ibm1046.c ├── ibm1046.h ├── ibm1047.c ├── ibm1097.c ├── ibm1097.h ├── ibm1112.c ├── ibm1112.h ├── ibm1122.c ├── ibm1122.h ├── ibm1123.c ├── ibm1123.h ├── ibm1124.c ├── ibm1124.h ├── ibm1129.c ├── ibm1129.h ├── ibm1130.c ├── ibm1130.h ├── ibm1132.c ├── ibm1132.h ├── ibm1133.c ├── ibm1133.h ├── ibm1137.c ├── ibm1137.h ├── ibm1140.c ├── ibm1140.h ├── ibm1141.c ├── ibm1141.h ├── ibm1142.c ├── ibm1142.h ├── ibm1143.c ├── ibm1143.h ├── ibm1144.c ├── ibm1144.h ├── ibm1145.c ├── ibm1145.h ├── ibm1146.c ├── ibm1146.h ├── ibm1147.c ├── ibm1147.h ├── ibm1148.c ├── ibm1148.h ├── ibm1149.c ├── ibm1149.h ├── ibm1153.c ├── ibm1153.h ├── ibm1154.c ├── ibm1154.h ├── ibm1155.c ├── ibm1155.h ├── ibm1156.c ├── ibm1156.h ├── ibm1157.c ├── ibm1157.h ├── ibm1158.c ├── ibm1158.h ├── ibm1160.c ├── ibm1160.h ├── ibm1161.c ├── ibm1161.h ├── ibm1162.c ├── ibm1162.h ├── ibm1163.c ├── ibm1163.h ├── ibm1164.c ├── ibm1164.h ├── ibm1166.c ├── ibm1166.h ├── ibm1167.c ├── ibm1167.h ├── ibm12712.c ├── ibm12712.h ├── ibm1364.c ├── ibm1364.h ├── ibm1371.c ├── ibm1371.h ├── ibm1388.c ├── ibm1388.h ├── ibm1390.c ├── ibm1390.h ├── ibm1399.c ├── ibm1399.h ├── ibm16804.c ├── ibm16804.h ├── ibm256.c ├── ibm273.c ├── ibm274.c ├── ibm275.c ├── ibm277.c ├── ibm278.c ├── ibm280.c ├── ibm281.c ├── ibm284.c ├── ibm285.c ├── ibm290.c ├── ibm297.c ├── ibm420.c ├── ibm423.c ├── ibm424.c ├── ibm437.c ├── ibm4517.c ├── ibm4517.h ├── ibm4899.c ├── ibm4899.h ├── ibm4909.c ├── ibm4909.h ├── ibm4971.c ├── ibm4971.h ├── ibm500.c ├── ibm5347.c ├── ibm5347.h ├── ibm803.c ├── ibm803.h ├── ibm850.c ├── ibm851.c ├── ibm852.c ├── ibm855.c ├── ibm856.c ├── ibm856.h ├── ibm857.c ├── ibm860.c ├── ibm861.c ├── ibm862.c ├── ibm863.c ├── ibm864.c ├── ibm865.c ├── ibm866.c ├── ibm866nav.c ├── ibm868.c ├── ibm869.c ├── ibm870.c ├── ibm871.c ├── ibm874.c ├── ibm875.c ├── ibm880.c ├── ibm891.c ├── ibm901.c ├── ibm901.h ├── ibm902.c ├── ibm902.h ├── ibm903.c ├── ibm9030.c ├── ibm9030.h ├── ibm904.c ├── ibm905.c ├── ibm9066.c ├── ibm9066.h ├── ibm918.c ├── ibm921.c ├── ibm921.h ├── ibm922.c ├── ibm922.h ├── ibm930.c ├── ibm930.h ├── ibm932.c ├── ibm932.h ├── ibm933.c ├── ibm933.h ├── ibm935.c ├── ibm935.h ├── ibm937.c ├── ibm937.h ├── ibm939.c ├── ibm939.h ├── ibm943.c ├── ibm943.h ├── ibm9448.c ├── ibm9448.h ├── iec_p27-1.c ├── inis-8.c ├── inis-cyrillic.c ├── inis.c ├── isiri-3342.c ├── isiri-3342.h ├── iso-2022-cn-ext.c ├── iso-2022-cn.c ├── iso-2022-jp-3.c ├── iso-2022-jp.c ├── iso-2022-kr.c ├── iso-ir-165.c ├── iso-ir-165.h ├── iso-ir-197.c ├── iso-ir-209.c ├── iso646.c ├── iso8859-1.c ├── iso8859-10.c ├── iso8859-11.c ├── iso8859-13.c ├── iso8859-14.c ├── iso8859-15.c ├── iso8859-16.c ├── iso8859-2.c ├── iso8859-3.c ├── iso8859-4.c ├── iso8859-5.c ├── iso8859-6.c ├── iso8859-7.c ├── iso8859-8.c ├── iso8859-9.c ├── iso8859-9e.c ├── iso_10367-box.c ├── iso_11548-1.c ├── iso_2033.c ├── iso_5427-ext.c ├── iso_5427.c ├── iso_5428.c ├── iso_6937-2.c ├── iso_6937.c ├── jis0201.c ├── jis0201.h ├── jis0208.c ├── jis0208.h ├── jis0212.c ├── jis0212.h ├── jisx0213.c ├── jisx0213.h ├── johab.c ├── koi-8.c ├── koi8-r.c ├── koi8-ru.c ├── koi8-t.c ├── koi8-u.c ├── ksc5601.c ├── ksc5601.h ├── latin-greek-1.c ├── latin-greek.c ├── mac-centraleurope.c ├── mac-is.c ├── mac-sami.c ├── mac-uk.c ├── macintosh.c ├── mik.c ├── nats-dano.c ├── nats-sefi.c ├── pt154.c ├── rk1048.c ├── run-iconv-test.sh ├── sami-ws2.c ├── shift_jisx0213.c ├── sjis.c ├── t.61.c ├── tcvn5712-1.c ├── testdata │ ├── ANSI_X3.4-1968 │ ├── BIG5HKSCS │ ├── BIG5HKSCS..UTF8 │ ├── BRF │ ├── BRF..UTF8 │ ├── BS_4730 │ ├── BS_4730..UTF8 │ ├── CP1250 │ ├── CP1250..UTF8 │ ├── CP1251 │ ├── CP1251..UTF8 │ ├── CP1252 │ ├── CP1252..UTF8 │ ├── CP1253 │ ├── CP1253..UTF8 │ ├── CP1254 │ ├── CP1254..UTF8 │ ├── CP1255 │ ├── CP1255..UTF8 │ ├── CP1256 │ ├── CP1256..UTF8 │ ├── CP1257 │ ├── CP1257..UTF8 │ ├── CP1258 │ ├── CP1258..UTF8 │ ├── CP770 │ ├── CP770..UTF8 │ ├── CP771 │ ├── CP771..UTF8 │ ├── CP772 │ ├── CP772..UTF8 │ ├── CP773 │ ├── CP773..UTF8 │ ├── CP774 │ ├── CP774..UTF8 │ ├── CSA_Z243.4-1985-1 │ ├── CSA_Z243.4-1985-1..UCS-2BE │ ├── CSA_Z243.4-1985-2 │ ├── CSA_Z243.4-1985-2..UCS4 │ ├── DIN_66003 │ ├── DIN_66003..UTF8 │ ├── DS_2089 │ ├── DS_2089..UTF8 │ ├── ES │ ├── ES..UTF8 │ ├── ES2 │ ├── ES2..UTF8 │ ├── EUC-CN │ ├── EUC-CN..UTF8 │ ├── EUC-JISX0213 │ ├── EUC-JISX0213..UTF8 │ ├── EUC-JP │ ├── EUC-JP..UTF8 │ ├── EUC-KR │ ├── EUC-KR..UTF8 │ ├── EUC-TW │ ├── EUC-TW..UTF8 │ ├── GBK │ ├── GBK..UTF8 │ ├── GB_1988-80 │ ├── GB_1988-80..UTF8 │ ├── IBM1008 │ ├── IBM1008..UTF8 │ ├── IBM1025 │ ├── IBM1025..UTF8 │ ├── IBM1046 │ ├── IBM1046..UTF8 │ ├── IBM1097 │ ├── IBM1097..UTF8 │ ├── IBM1112 │ ├── IBM1112..UTF8 │ ├── IBM1122 │ ├── IBM1122..UTF8 │ ├── IBM1123 │ ├── IBM1123..UTF8 │ ├── IBM1124 │ ├── IBM1124..UTF8 │ ├── IBM1129 │ ├── IBM1129..UTF8 │ ├── IBM1130 │ ├── IBM1130..UTF8 │ ├── IBM1132 │ ├── IBM1132..UTF8 │ ├── IBM1133 │ ├── IBM1133..UTF8 │ ├── IBM1137 │ ├── IBM1137..UTF8 │ ├── IBM1140 │ ├── IBM1140..UTF8 │ ├── IBM1141 │ ├── IBM1141..UTF8 │ ├── IBM1142 │ ├── IBM1142..UTF8 │ ├── IBM1143 │ ├── IBM1143..UTF8 │ ├── IBM1144 │ ├── IBM1144..UTF8 │ ├── IBM1145 │ ├── IBM1145..UTF8 │ ├── IBM1146 │ ├── IBM1146..UTF8 │ ├── IBM1147 │ ├── IBM1147..UTF8 │ ├── IBM1148 │ ├── IBM1148..UTF8 │ ├── IBM1149 │ ├── IBM1149..UTF8 │ ├── IBM1153 │ ├── IBM1153..UTF8 │ ├── IBM1154 │ ├── IBM1154..UTF8 │ ├── IBM1155 │ ├── IBM1155..UTF8 │ ├── IBM1156 │ ├── IBM1156..UTF8 │ ├── IBM1157 │ ├── IBM1157..UTF8 │ ├── IBM1158 │ ├── IBM1158..UTF8 │ ├── IBM1160 │ ├── IBM1160..UTF8 │ ├── IBM1161 │ ├── IBM1161..UTF8 │ ├── IBM1162 │ ├── IBM1162..UTF8 │ ├── IBM1163 │ ├── IBM1163..UTF8 │ ├── IBM1164 │ ├── IBM1164..UTF8 │ ├── IBM1166 │ ├── IBM1166..UTF8 │ ├── IBM1167 │ ├── IBM1167..UTF8 │ ├── IBM12712 │ ├── IBM12712..UTF8 │ ├── IBM1364 │ ├── IBM1364..UTF8 │ ├── IBM1371 │ ├── IBM1371..UTF8 │ ├── IBM1388 │ ├── IBM1388..UTF8 │ ├── IBM1390 │ ├── IBM1390..UTF8 │ ├── IBM1399 │ ├── IBM1399..UTF8 │ ├── IBM16804 │ ├── IBM16804..UTF8 │ ├── IBM4517 │ ├── IBM4517..UTF8 │ ├── IBM4899 │ ├── IBM4899..UTF8 │ ├── IBM4909 │ ├── IBM4909..UTF8 │ ├── IBM4971 │ ├── IBM4971..UTF8 │ ├── IBM5347 │ ├── IBM5347..UTF8 │ ├── IBM803 │ ├── IBM803..UTF8 │ ├── IBM856 │ ├── IBM856..UTF8 │ ├── IBM901 │ ├── IBM901..UTF8 │ ├── IBM902 │ ├── IBM902..UTF8 │ ├── IBM9030 │ ├── IBM9030..UTF8 │ ├── IBM9066 │ ├── IBM9066..UTF8 │ ├── IBM921 │ ├── IBM921..UTF8 │ ├── IBM922 │ ├── IBM922..UTF8 │ ├── IBM930 │ ├── IBM930..UTF8 │ ├── IBM932 │ ├── IBM932..UTF8 │ ├── IBM933 │ ├── IBM933..UTF8 │ ├── IBM935 │ ├── IBM935..UTF8 │ ├── IBM937 │ ├── IBM937..UTF8 │ ├── IBM939 │ ├── IBM939..UTF8 │ ├── IBM943 │ ├── IBM943..UTF8 │ ├── IBM9448 │ ├── IBM9448..UTF8 │ ├── ISO-2022-CN │ ├── ISO-2022-CN-EXT │ ├── ISO-2022-CN-EXT..UTF8 │ ├── ISO-2022-CN..UTF8 │ ├── ISO-2022-JP │ ├── ISO-2022-JP-2 │ ├── ISO-2022-JP-2..UTF8 │ ├── ISO-2022-JP-3 │ ├── ISO-2022-JP-3..UTF8 │ ├── ISO-2022-JP..UTF8 │ ├── ISO-2022-KR │ ├── ISO-2022-KR..UTF8 │ ├── ISO-8859-1 │ ├── ISO-8859-1..UTF8 │ ├── ISO-8859-10 │ ├── ISO-8859-10..UCS-2BE │ ├── ISO-8859-14 │ ├── ISO-8859-14..UTF8 │ ├── ISO-8859-15 │ ├── ISO-8859-15..UTF8 │ ├── ISO-8859-2 │ ├── ISO-8859-2..UCS4 │ ├── ISO-8859-2..UTF8 │ ├── ISO-8859-3 │ ├── ISO-8859-4 │ ├── ISO-8859-5 │ ├── ISO-8859-6 │ ├── ISO-8859-7 │ ├── ISO-8859-8 │ ├── ISO-8859-9 │ ├── ISO_11548-1 │ ├── ISO_11548-1..UTF8 │ ├── IT │ ├── IT..UTF8 │ ├── JIS_C6220-1969-RO │ ├── JIS_C6220-1969-RO..UTF8 │ ├── JIS_C6229-1984-B │ ├── JIS_C6229-1984-B..UTF8 │ ├── JUS_I.B1.002 │ ├── JUS_I.B1.002..UTF8 │ ├── KOI-8 │ ├── KOI-8..UTF8 │ ├── KOI8-R │ ├── KOI8-R..UTF8 │ ├── KSC5636 │ ├── KSC5636..UTF8 │ ├── MIK │ ├── MIK..UTF8 │ ├── MSZ_7795.3 │ ├── MSZ_7795.3..UTF8 │ ├── NC_NC00-10 │ ├── NC_NC00-10..UTF8 │ ├── NF_Z_62-010 │ ├── NF_Z_62-010..UTF8 │ ├── NF_Z_62-010_1973 │ ├── NF_Z_62-010_1973..UTF8 │ ├── NS_4551-1 │ ├── NS_4551-1..UTF8 │ ├── NS_4551-2 │ ├── NS_4551-2..UTF8 │ ├── PT │ ├── PT..UTF8 │ ├── PT2 │ ├── PT2..UTF8 │ ├── SEN_850200_B │ ├── SEN_850200_B..UTF8 │ ├── SEN_850200_C │ ├── SEN_850200_C..UTF8 │ ├── SHIFT_JISX0213 │ ├── SHIFT_JISX0213..UTF8 │ ├── TCVN-5712 │ ├── TCVN-5712..UTF8 │ ├── TSCII │ ├── TSCII..UTF8 │ ├── UTF-7 │ ├── UTF-7..UTF8 │ ├── WINDOWS-1255 │ ├── WINDOWS-1255..UTF8 │ ├── WINDOWS-1258 │ ├── WINDOWS-1258..UTF8 │ ├── alfabeta..UTF-16.BE │ ├── alfabeta..UTF-16.LE │ ├── alfabeta..UTF-32.BE │ ├── alfabeta..UTF-32.LE │ ├── alfabeta..UTF-8 │ └── suntzus ├── tis-620.c ├── tscii.c ├── tst-e2big.c ├── tst-iconv4.c ├── tst-iconv6.c ├── tst-iconv7.c ├── tst-loading.c ├── tst-table-charmap.sh ├── tst-table-from.c ├── tst-table-to.c ├── tst-table.sh ├── tst-tables.sh ├── uhc.c ├── unicode.c ├── utf-16.c ├── utf-32.c ├── utf-7.c └── viscii.c ├── include ├── aio.h ├── aliases.h ├── alloca.h ├── argp.h ├── argz.h ├── arpa │ ├── ftp.h │ ├── inet.h │ ├── nameser.h │ ├── nameser_compat.h │ ├── telnet.h │ └── tftp.h ├── assert.h ├── atomic.h ├── bits │ ├── cmathcalls.h │ ├── dlfcn.h │ ├── error.h │ ├── fcntl2.h │ ├── ipc.h │ ├── locale.h │ ├── mathcalls.h │ ├── poll2.h │ ├── posix1_lim.h │ ├── posix2_lim.h │ ├── select2.h │ ├── setjmp2.h │ ├── socket2.h │ ├── stab.def │ ├── stdlib-float.h │ ├── stdlib.h │ ├── string2.h │ ├── string3.h │ ├── syslog.h │ ├── unistd.h │ ├── wchar2.h │ └── xopen_lim.h ├── byteswap.h ├── caller.h ├── complex.h ├── ctype.h ├── des.h ├── dirent.h ├── dlfcn.h ├── elf.h ├── endian.h ├── envz.h ├── err.h ├── errno.h ├── error.h ├── execinfo.h ├── fcntl.h ├── features.h ├── fenv.h ├── fnmatch.h ├── fpu_control.h ├── ftw.h ├── gconv.h ├── getopt.h ├── getopt_int.h ├── glob.h ├── gmp.h ├── gnu-versions.h ├── gnu │ ├── libc-version.h │ └── stubs.h ├── grp.h ├── gshadow.h ├── iconv.h ├── ifaddrs.h ├── ifunc-impl-list.h ├── inline-hashtab.h ├── langinfo.h ├── libc-internal.h ├── libc-symbols.h ├── libgen.h ├── libintl.h ├── libio.h ├── limits.h ├── link.h ├── locale.h ├── malloc.h ├── math.h ├── mcheck.h ├── memory.h ├── mntent.h ├── monetary.h ├── mqueue.h ├── net │ └── if.h ├── netdb.h ├── netgroup.h ├── netinet │ ├── ether.h │ └── in.h ├── nl_types.h ├── nss.h ├── nsswitch.h ├── obstack.h ├── poll.h ├── printf.h ├── programs │ └── xmalloc.h ├── protocols │ ├── routed.h │ ├── rwhod.h │ ├── talkd.h │ └── timed.h ├── pthread.h ├── pty.h ├── pwd.h ├── regex.h ├── resolv.h ├── rounding-mode.h ├── rpc │ ├── auth.h │ ├── auth_des.h │ ├── auth_unix.h │ ├── clnt.h │ ├── des_crypt.h │ ├── key_prot.h │ ├── netdb.h │ ├── pmap_clnt.h │ ├── pmap_prot.h │ ├── pmap_rmt.h │ ├── rpc.h │ ├── rpc_msg.h │ ├── svc.h │ ├── svc_auth.h │ ├── types.h │ └── xdr.h ├── rpcsvc │ ├── nis.h │ ├── nis_callback.h │ ├── nis_tags.h │ ├── nislib.h │ ├── yp.h │ ├── ypclnt.h │ └── ypupd.h ├── sched.h ├── search.h ├── set-hooks.h ├── setjmp.h ├── sgtty.h ├── shadow.h ├── shlib-compat.h ├── signal.h ├── spawn.h ├── stab.h ├── stap-probe.h ├── stdc-predef.h ├── stdio.h ├── stdio_ext.h ├── stdlib.h ├── string.h ├── strings.h ├── stropts.h ├── stubs-bootstrap.h ├── stubs-prologue.h ├── sys │ ├── bitypes.h │ ├── cdefs.h │ ├── dir.h │ ├── epoll.h │ ├── errno.h │ ├── fcntl.h │ ├── file.h │ ├── gmon.h │ ├── gmon_out.h │ ├── ioctl.h │ ├── ipc.h │ ├── mman.h │ ├── msg.h │ ├── param.h │ ├── poll.h │ ├── prctl.h │ ├── profil.h │ ├── queue.h │ ├── resource.h │ ├── select.h │ ├── sem.h │ ├── sendfile.h │ ├── shm.h │ ├── signal.h │ ├── socket.h │ ├── stat.h │ ├── statfs.h │ ├── statvfs.h │ ├── sysctl.h │ ├── sysinfo.h │ ├── syslog.h │ ├── termios.h │ ├── time.h │ ├── timeb.h │ ├── times.h │ ├── types.h │ ├── uio.h │ ├── un.h │ ├── unistd.h │ ├── utsname.h │ ├── vlimit.h │ ├── vtimes.h │ ├── wait.h │ └── xattr.h ├── syscall.h ├── sysexits.h ├── syslog.h ├── tar.h ├── termios.h ├── tgmath.h ├── time.h ├── ttyent.h ├── uchar.h ├── ucontext.h ├── ulimit.h ├── unistd.h ├── utime.h ├── utmp.h ├── values.h ├── wchar.h ├── wctype.h ├── wordexp.h └── xlocale.h ├── inet ├── Makefile ├── Versions ├── aliases.h ├── arpa │ ├── ftp.h │ ├── inet.h │ ├── telnet.h │ └── tftp.h ├── bug-if1.c ├── check_native.c ├── check_pf.c ├── ether_aton.c ├── ether_aton_r.c ├── ether_hton.c ├── ether_line.c ├── ether_ntoa.c ├── ether_ntoa_r.c ├── ether_ntoh.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 ├── getipv4sourcefilter.c ├── getnameinfo.c ├── getnetbyad.c ├── getnetbyad_r.c ├── getnetbynm.c ├── getnetbynm_r.c ├── getnetent.c ├── getnetent_r.c ├── getnetgrent.c ├── getnetgrent_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 ├── getsourcefilter.c ├── getsrvbynm.c ├── getsrvbynm_r.c ├── getsrvbypt.c ├── getsrvbypt_r.c ├── herrno-loc.c ├── herrno.c ├── htonl.c ├── htons.c ├── htontest.c ├── if_index.c ├── ifaddrs.c ├── ifaddrs.h ├── ifreq.c ├── in6_addr.c ├── inet6_opt.c ├── inet6_option.c ├── inet6_rth.c ├── inet_lnaof.c ├── inet_mkadr.c ├── inet_net.c ├── inet_netof.c ├── inet_ntoa.c ├── netgroup.h ├── netinet │ ├── ether.h │ ├── icmp6.h │ ├── igmp.h │ ├── in.h │ └── ip6.h ├── protocols │ ├── routed.h │ ├── rwhod.h │ ├── talkd.h │ └── timed.h ├── rcmd.c ├── rexec.c ├── ruserpass.c ├── setipv4sourcefilter.c ├── setsourcefilter.c ├── test-ifaddrs.c ├── test-inet6_opt.c ├── test_ifindex.c ├── tst-checks.c ├── tst-ether_aton.c ├── tst-ether_line.c ├── tst-gethnm.c ├── tst-getni1.c ├── tst-getni2.c ├── tst-inet6_rth.c ├── tst-network.c └── tst-ntoa.c ├── intl ├── Depend ├── Makefile ├── Versions ├── bindtextdom.c ├── dcgettext.c ├── dcigettext.c ├── dcngettext.c ├── dgettext.c ├── dngettext.c ├── explodename.c ├── finddomain.c ├── gettext.c ├── gettextP.h ├── gmo.h ├── hash-string.c ├── hash-string.h ├── l10nflist.c ├── libintl.h ├── loadinfo.h ├── loadmsgcat.c ├── locale.alias ├── localealias.c ├── ngettext.c ├── plural-eval.c ├── plural-exp.c ├── plural-exp.h ├── plural.c ├── plural.y ├── po2test.awk ├── textdomain.c ├── translit.po ├── tst-codeset.c ├── tst-gettext.c ├── tst-gettext.sh ├── tst-gettext2.c ├── tst-gettext2.sh ├── tst-gettext3.c ├── tst-gettext4-de.po ├── tst-gettext4-fr.po ├── tst-gettext4.c ├── tst-gettext4.sh ├── tst-gettext5.c ├── tst-gettext6.c ├── tst-gettext6.sh ├── tst-ngettext.c ├── tst-translit.c ├── tst-translit.sh ├── tstcodeset.po ├── tstlang1.po └── tstlang2.po ├── io ├── Makefile ├── Versions ├── access.c ├── bits │ ├── fcntl2.h │ └── poll2.h ├── bug-ftw1.c ├── bug-ftw2.c ├── bug-ftw3.c ├── bug-ftw4.c ├── bug-ftw5.c ├── chdir.c ├── chmod.c ├── chown.c ├── close.c ├── creat.c ├── creat64.c ├── dup.c ├── dup2.c ├── dup3.c ├── euidaccess.c ├── faccessat.c ├── fchdir.c ├── fchmod.c ├── fchmodat.c ├── fchown.c ├── fchownat.c ├── fcntl.c ├── fcntl.h ├── flock.c ├── fstat.c ├── fstat64.c ├── fstatat.c ├── fstatat64.c ├── fstatfs.c ├── fstatfs64.c ├── fstatvfs.c ├── fstatvfs64.c ├── fts.c ├── fts.h ├── ftw.c ├── ftw.h ├── ftw64.c ├── ftwtest-sh ├── ftwtest.c ├── futimens.c ├── fxstat.c ├── fxstat64.c ├── fxstatat.c ├── fxstatat64.c ├── getcwd.c ├── getdirname.c ├── getwd.c ├── have_o_cloexec.c ├── isatty.c ├── lchmod.c ├── lchown.c ├── link.c ├── linkat.c ├── lockf.c ├── lockf64.c ├── lseek.c ├── lseek64.c ├── lstat.c ├── lstat64.c ├── lxstat.c ├── lxstat64.c ├── mkdir.c ├── mkdirat.c ├── mkfifo.c ├── mkfifoat.c ├── mknod.c ├── mknodat.c ├── open.c ├── open64.c ├── open64_2.c ├── open_2.c ├── openat.c ├── openat64.c ├── openat64_2.c ├── openat_2.c ├── pipe.c ├── pipe2.c ├── poll.c ├── poll.h ├── posix_fadvise.c ├── posix_fadvise64.c ├── posix_fallocate.c ├── posix_fallocate64.c ├── ppoll.c ├── pwd.c ├── read.c ├── readlink.c ├── readlinkat.c ├── rmdir.c ├── sendfile.c ├── sendfile64.c ├── stat.c ├── stat64.c ├── statfs.c ├── statfs64.c ├── statvfs.c ├── statvfs64.c ├── symlink.c ├── symlinkat.c ├── sys │ ├── fcntl.h │ ├── poll.h │ ├── sendfile.h │ ├── stat.h │ ├── statfs.h │ ├── statvfs.h │ └── vfs.h ├── test-lfs.c ├── test-stat.c ├── test-stat2.c ├── test-utime.c ├── tst-faccessat.c ├── tst-fchmodat.c ├── tst-fchownat.c ├── tst-fcntl.c ├── tst-fstatat.c ├── tst-futimesat.c ├── tst-getcwd.c ├── tst-linkat.c ├── tst-mkdirat.c ├── tst-mkfifoat.c ├── tst-mknodat.c ├── tst-openat.c ├── tst-posix_fallocate.c ├── tst-readlinkat.c ├── tst-renameat.c ├── tst-statvfs.c ├── tst-symlinkat.c ├── tst-ttyname_r.c ├── tst-unlinkat.c ├── ttyname.c ├── ttyname_r.c ├── umask.c ├── unlink.c ├── unlinkat.c ├── utime.c ├── utime.h ├── utimensat.c ├── write.c ├── xmknod.c ├── xmknodat.c ├── xstat.c └── xstat64.c ├── libc-abis ├── libidn ├── Banner ├── ChangeLog ├── Makefile ├── Versions ├── configure ├── configure.in ├── gunicomp.h ├── gunidecomp.h ├── iconvme.c ├── iconvme.h ├── idn-stub.c ├── idna.c ├── idna.h ├── nfkc.c ├── profiles.c ├── punycode.c ├── punycode.h ├── rfc3454.c ├── shlib-versions ├── stringprep.c ├── stringprep.h └── toutf8.c ├── libio ├── Depend ├── Makefile ├── Versions ├── __fbufsize.c ├── __flbf.c ├── __fpending.c ├── __fpurge.c ├── __freadable.c ├── __freading.c ├── __fsetlocking.c ├── __fwritable.c ├── __fwriting.c ├── bits │ ├── libio-ldbl.h │ ├── stdio-ldbl.h │ ├── stdio.h │ └── stdio2.h ├── bug-fopena+.c ├── bug-fseek.c ├── bug-ftell.c ├── bug-memstream1.c ├── bug-mmap-fflush.c ├── bug-rewind.c ├── bug-rewind2.c ├── bug-ungetc.c ├── bug-ungetc2.c ├── bug-ungetc3.c ├── bug-ungetc4.c ├── bug-ungetwc1.c ├── bug-ungetwc2.c ├── bug-wfflush.c ├── bug-wmemstream1.c ├── bug-wsetpos.c ├── clearerr.c ├── clearerr_u.c ├── fcloseall.c ├── feof.c ├── feof_u.c ├── ferror.c ├── ferror_u.c ├── filedoalloc.c ├── fileno.c ├── fileops.c ├── fmemopen.c ├── fputc.c ├── fputc_u.c ├── fputwc.c ├── fputwc_u.c ├── freopen.c ├── freopen64.c ├── fseek.c ├── fseeko.c ├── fseeko64.c ├── ftello.c ├── ftello64.c ├── fwide.c ├── fwprintf.c ├── fwscanf.c ├── genops.c ├── getc.c ├── getc_u.c ├── getchar.c ├── getchar_u.c ├── getwc.c ├── getwc_u.c ├── getwchar.c ├── getwchar_u.c ├── iofclose.c ├── iofdopen.c ├── iofflush.c ├── iofflush_u.c ├── iofgetpos.c ├── iofgetpos64.c ├── iofgets.c ├── iofgets_u.c ├── iofgetws.c ├── iofgetws_u.c ├── iofopen.c ├── iofopen64.c ├── iofopncook.c ├── iofputs.c ├── iofputs_u.c ├── iofputws.c ├── iofputws_u.c ├── iofread.c ├── iofread_u.c ├── iofsetpos.c ├── iofsetpos64.c ├── ioftell.c ├── iofwide.c ├── iofwrite.c ├── iofwrite_u.c ├── iogetdelim.c ├── iogetline.c ├── iogets.c ├── iogetwline.c ├── iolibio.h ├── iopadn.c ├── iopopen.c ├── ioputs.c ├── ioseekoff.c ├── ioseekpos.c ├── iosetbuffer.c ├── iosetvbuf.c ├── ioungetc.c ├── ioungetwc.c ├── iovdprintf.c ├── iovsprintf.c ├── iovsscanf.c ├── iovswscanf.c ├── iowpadn.c ├── libc_fatal.c ├── libio.h ├── libioP.h ├── memstream.c ├── obprintf.c ├── oldfileops.c ├── oldiofclose.c ├── oldiofdopen.c ├── oldiofgetpos.c ├── oldiofgetpos64.c ├── oldiofopen.c ├── oldiofsetpos.c ├── oldiofsetpos64.c ├── oldiopopen.c ├── oldpclose.c ├── oldstdfiles.c ├── oldtmpfile.c ├── pclose.c ├── peekc.c ├── putc.c ├── putc_u.c ├── putchar.c ├── putchar_u.c ├── putwc.c ├── putwc_u.c ├── putwchar.c ├── putwchar_u.c ├── rewind.c ├── setbuf.c ├── setlinebuf.c ├── stdfiles.c ├── stdio.c ├── stdio.h ├── strfile.h ├── strops.c ├── swprintf.c ├── swscanf.c ├── test-fmemopen.c ├── test-freopen.c ├── test-freopen.sh ├── tst-atime.c ├── tst-eof.c ├── tst-ext.c ├── tst-ext2.c ├── tst-fgetwc.c ├── tst-fgetwc.input ├── tst-fgetws.c ├── tst-fopenloc.c ├── tst-fopenloc2.c ├── tst-freopen.c ├── tst-fseek.c ├── tst-fwrite-error.c ├── tst-memstream1.c ├── tst-memstream2.c ├── tst-mmap-eofsync.c ├── tst-mmap-fflushsync.c ├── tst-mmap-offend.c ├── tst-mmap-setvbuf.c ├── tst-mmap2-eofsync.c ├── tst-popen1.c ├── tst-setvbuf1.c ├── tst-sscanf.c ├── tst-swscanf.c ├── tst-ungetwc1.c ├── tst-ungetwc2.c ├── tst-widetext.c ├── tst-widetext.input ├── tst-wmemstream1.c ├── tst-wmemstream2.c ├── tst_getwc.c ├── tst_getwc.input ├── tst_putwc.c ├── tst_swprintf.c ├── tst_swscanf.c ├── tst_wprintf.c ├── tst_wprintf2.c ├── tst_wscanf.c ├── tst_wscanf.input ├── vasprintf.c ├── vscanf.c ├── vsnprintf.c ├── vswprintf.c ├── vwprintf.c ├── vwscanf.c ├── wdummyfileops.c ├── wfiledoalloc.c ├── wfileops.c ├── wgenops.c ├── wmemstream.c ├── wprintf.c ├── wscanf.c └── wstrops.c ├── locale ├── C-address.c ├── C-collate.c ├── C-ctype.c ├── C-identification.c ├── C-measurement.c ├── C-messages.c ├── C-monetary.c ├── C-name.c ├── C-numeric.c ├── C-paper.c ├── C-telephone.c ├── C-time.c ├── C-translit.h ├── C-translit.h.in ├── C_name.c ├── Makefile ├── SYS_libc.c ├── Versions ├── bits │ └── locale.h ├── broken_cur_max.c ├── categories.def ├── catnames.c ├── coll-lookup.c ├── coll-lookup.h ├── dummy-setlocale.c ├── duplocale.c ├── elem-hash.h ├── findlocale.c ├── freelocale.c ├── gen-translit.pl ├── global-locale.c ├── hashval.h ├── indigits.h ├── indigitswc.h ├── iso-3166.def ├── iso-4217.def ├── iso-639.def ├── langinfo.h ├── lc-address.c ├── lc-collate.c ├── lc-ctype.c ├── lc-identification.c ├── lc-measurement.c ├── lc-messages.c ├── lc-monetary.c ├── lc-name.c ├── lc-numeric.c ├── lc-paper.c ├── lc-telephone.c ├── lc-time.c ├── loadarchive.c ├── loadlocale.c ├── locale.h ├── localeconv.c ├── localeinfo.h ├── localename.c ├── locarchive.h ├── mb_cur_max.c ├── newlocale.c ├── nl_langinfo.c ├── nl_langinfo_l.c ├── outdigits.h ├── outdigitswc.h ├── programs │ ├── 3level.h │ ├── charmap-dir.c │ ├── charmap-dir.h │ ├── charmap-kw.gperf │ ├── charmap-kw.h │ ├── charmap.c │ ├── charmap.h │ ├── config.h │ ├── ld-address.c │ ├── ld-collate.c │ ├── ld-ctype.c │ ├── ld-identification.c │ ├── ld-measurement.c │ ├── ld-messages.c │ ├── ld-monetary.c │ ├── ld-name.c │ ├── ld-numeric.c │ ├── ld-paper.c │ ├── ld-telephone.c │ ├── ld-time.c │ ├── linereader.c │ ├── linereader.h │ ├── locale-spec.c │ ├── locale.c │ ├── localedef.c │ ├── localedef.h │ ├── locarchive.c │ ├── locfile-kw.gperf │ ├── locfile-kw.h │ ├── locfile-token.h │ ├── locfile.c │ ├── locfile.h │ ├── repertoire.c │ ├── repertoire.h │ ├── simple-hash.c │ ├── simple-hash.h │ ├── xmalloc.c │ └── xstrdup.c ├── setlocale.c ├── strlen-hash.h ├── tst-C-locale.c ├── tst-duplocale.c ├── tst-locname.c ├── uselocale.c ├── weight.h ├── weightwc.h ├── xlocale.c └── xlocale.h ├── localedata ├── ChangeLog ├── Depend ├── Makefile ├── README ├── SUPPORTED ├── bug-iconv-trans.c ├── bug-setlocale1-static.c ├── bug-setlocale1.c ├── bug-usesetlocale.c ├── charmaps │ ├── ANSI_X3.110-1983 │ ├── ANSI_X3.4-1968 │ ├── ARMSCII-8 │ ├── ASMO_449 │ ├── BIG5 │ ├── BIG5-HKSCS │ ├── BRF │ ├── BS_4730 │ ├── BS_VIEWDATA │ ├── CP10007 │ ├── CP1125 │ ├── CP1250 │ ├── CP1251 │ ├── CP1252 │ ├── CP1253 │ ├── CP1254 │ ├── CP1255 │ ├── CP1256 │ ├── CP1257 │ ├── CP1258 │ ├── CP737 │ ├── CP770 │ ├── CP771 │ ├── CP772 │ ├── CP773 │ ├── CP774 │ ├── CP775 │ ├── CP949 │ ├── CSA_Z243.4-1985-1 │ ├── CSA_Z243.4-1985-2 │ ├── CSA_Z243.4-1985-GR │ ├── CSN_369103 │ ├── CWI │ ├── DEC-MCS │ ├── DIN_66003 │ ├── DS_2089 │ ├── EBCDIC-AT-DE │ ├── EBCDIC-AT-DE-A │ ├── EBCDIC-CA-FR │ ├── EBCDIC-DK-NO │ ├── EBCDIC-DK-NO-A │ ├── EBCDIC-ES │ ├── EBCDIC-ES-A │ ├── EBCDIC-ES-S │ ├── EBCDIC-FI-SE │ ├── EBCDIC-FI-SE-A │ ├── EBCDIC-FR │ ├── EBCDIC-IS-FRISS │ ├── EBCDIC-IT │ ├── EBCDIC-PT │ ├── EBCDIC-UK │ ├── EBCDIC-US │ ├── ECMA-CYRILLIC │ ├── ES │ ├── ES2 │ ├── EUC-JISX0213 │ ├── EUC-JP │ ├── EUC-JP-MS │ ├── EUC-KR │ ├── EUC-TW │ ├── GB18030 │ ├── GB2312 │ ├── GBK │ ├── GB_1988-80 │ ├── GEORGIAN-ACADEMY │ ├── GEORGIAN-PS │ ├── GOST_19768-74 │ ├── GREEK-CCITT │ ├── GREEK7 │ ├── GREEK7-OLD │ ├── HP-GREEK8 │ ├── HP-ROMAN8 │ ├── HP-ROMAN9 │ ├── HP-THAI8 │ ├── HP-TURKISH8 │ ├── IBM037 │ ├── IBM038 │ ├── IBM1004 │ ├── IBM1026 │ ├── IBM1047 │ ├── IBM1124 │ ├── IBM1129 │ ├── IBM1132 │ ├── IBM1133 │ ├── IBM1160 │ ├── IBM1161 │ ├── IBM1162 │ ├── IBM1163 │ ├── IBM1164 │ ├── IBM256 │ ├── IBM273 │ ├── IBM274 │ ├── IBM275 │ ├── IBM277 │ ├── IBM278 │ ├── IBM280 │ ├── IBM281 │ ├── IBM284 │ ├── IBM285 │ ├── IBM290 │ ├── IBM297 │ ├── IBM420 │ ├── IBM423 │ ├── IBM424 │ ├── IBM437 │ ├── IBM500 │ ├── IBM850 │ ├── IBM851 │ ├── IBM852 │ ├── IBM855 │ ├── IBM856 │ ├── IBM857 │ ├── IBM860 │ ├── IBM861 │ ├── IBM862 │ ├── IBM863 │ ├── IBM864 │ ├── IBM865 │ ├── IBM866 │ ├── IBM866NAV │ ├── IBM868 │ ├── IBM869 │ ├── IBM870 │ ├── IBM871 │ ├── IBM874 │ ├── IBM875 │ ├── IBM880 │ ├── IBM891 │ ├── IBM903 │ ├── IBM904 │ ├── IBM905 │ ├── IBM918 │ ├── IBM922 │ ├── IEC_P27-1 │ ├── INIS │ ├── INIS-8 │ ├── INIS-CYRILLIC │ ├── INVARIANT │ ├── ISIRI-3342 │ ├── ISO-8859-1 │ ├── ISO-8859-10 │ ├── ISO-8859-11 │ ├── ISO-8859-13 │ ├── ISO-8859-14 │ ├── ISO-8859-15 │ ├── ISO-8859-16 │ ├── ISO-8859-2 │ ├── ISO-8859-3 │ ├── ISO-8859-4 │ ├── ISO-8859-5 │ ├── ISO-8859-6 │ ├── ISO-8859-7 │ ├── ISO-8859-8 │ ├── ISO-8859-9 │ ├── ISO-8859-9E │ ├── ISO-IR-197 │ ├── ISO-IR-209 │ ├── ISO-IR-90 │ ├── ISO_10367-BOX │ ├── ISO_10646 │ ├── ISO_11548-1 │ ├── ISO_2033-1983 │ ├── ISO_5427 │ ├── ISO_5427-EXT │ ├── ISO_5428 │ ├── ISO_646.BASIC │ ├── ISO_646.IRV │ ├── ISO_6937 │ ├── ISO_6937-2-25 │ ├── ISO_6937-2-ADD │ ├── ISO_8859-1,GL │ ├── ISO_8859-SUPP │ ├── IT │ ├── JIS_C6220-1969-JP │ ├── JIS_C6220-1969-RO │ ├── JIS_C6229-1984-A │ ├── JIS_C6229-1984-B │ ├── JIS_C6229-1984-B-ADD │ ├── JIS_C6229-1984-HAND │ ├── JIS_C6229-1984-HAND-ADD │ ├── JIS_C6229-1984-KANA │ ├── JIS_X0201 │ ├── JOHAB │ ├── JUS_I.B1.002 │ ├── JUS_I.B1.003-MAC │ ├── JUS_I.B1.003-SERB │ ├── KOI-8 │ ├── KOI8-R │ ├── KOI8-RU │ ├── KOI8-T │ ├── KOI8-U │ ├── KSC5636 │ ├── LATIN-GREEK │ ├── LATIN-GREEK-1 │ ├── MAC-CENTRALEUROPE │ ├── MAC-CYRILLIC │ ├── MAC-IS │ ├── MAC-SAMI │ ├── MAC-UK │ ├── MACINTOSH │ ├── MIK │ ├── MSZ_7795.3 │ ├── NATS-DANO │ ├── NATS-DANO-ADD │ ├── NATS-SEFI │ ├── NATS-SEFI-ADD │ ├── NC_NC00-10 │ ├── NEXTSTEP │ ├── NF_Z_62-010 │ ├── NF_Z_62-010_1973 │ ├── NS_4551-1 │ ├── NS_4551-2 │ ├── PT │ ├── PT154 │ ├── PT2 │ ├── RK1048 │ ├── SAMI │ ├── SAMI-WS2 │ ├── SEN_850200_B │ ├── SEN_850200_C │ ├── SHIFT_JIS │ ├── SHIFT_JISX0213 │ ├── T.101-G2 │ ├── T.61-7BIT │ ├── T.61-8BIT │ ├── TCVN5712-1 │ ├── TIS-620 │ ├── TSCII │ ├── UTF-8 │ ├── VIDEOTEX-SUPPL │ ├── VISCII │ └── WINDOWS-31J ├── collate-test.c ├── cs_CZ.in ├── da_DK.in ├── de_DE.in ├── dump-ctype.c ├── en_US.in ├── fr_FR.in ├── gen-locale.sh ├── gen-unicode-ctype.c ├── hr_HR.in ├── locales │ ├── POSIX │ ├── aa_DJ │ ├── aa_ER │ ├── aa_ER@saaho │ ├── aa_ET │ ├── af_ZA │ ├── am_ET │ ├── an_ES │ ├── ar_AE │ ├── ar_BH │ ├── ar_DZ │ ├── ar_EG │ ├── ar_IN │ ├── ar_IQ │ ├── ar_JO │ ├── ar_KW │ ├── ar_LB │ ├── ar_LY │ ├── ar_MA │ ├── ar_OM │ ├── ar_QA │ ├── ar_SA │ ├── ar_SD │ ├── ar_SY │ ├── ar_TN │ ├── ar_YE │ ├── as_IN │ ├── ast_ES │ ├── ayc_PE │ ├── az_AZ │ ├── be_BY │ ├── be_BY@latin │ ├── bem_ZM │ ├── ber_DZ │ ├── ber_MA │ ├── bg_BG │ ├── bho_IN │ ├── bn_BD │ ├── bn_IN │ ├── bo_CN │ ├── bo_IN │ ├── br_FR │ ├── br_FR@euro │ ├── brx_IN │ ├── bs_BA │ ├── byn_ER │ ├── ca_AD │ ├── ca_ES │ ├── ca_ES@euro │ ├── ca_FR │ ├── ca_IT │ ├── crh_UA │ ├── cs_CZ │ ├── csb_PL │ ├── cv_RU │ ├── cy_GB │ ├── da_DK │ ├── de_AT │ ├── de_AT@euro │ ├── de_BE │ ├── de_BE@euro │ ├── de_CH │ ├── de_DE │ ├── de_DE@euro │ ├── de_LU │ ├── de_LU@euro │ ├── doi_IN │ ├── dv_MV │ ├── dz_BT │ ├── el_CY │ ├── el_GR │ ├── el_GR@euro │ ├── en_AG │ ├── en_AU │ ├── en_BW │ ├── en_CA │ ├── en_DK │ ├── en_GB │ ├── en_HK │ ├── en_IE │ ├── en_IE@euro │ ├── en_IN │ ├── en_NG │ ├── en_NZ │ ├── en_PH │ ├── en_SG │ ├── en_US │ ├── en_ZA │ ├── en_ZM │ ├── en_ZW │ ├── es_AR │ ├── es_BO │ ├── es_CL │ ├── es_CO │ ├── es_CR │ ├── es_CU │ ├── es_DO │ ├── es_EC │ ├── es_ES │ ├── es_ES@euro │ ├── es_GT │ ├── es_HN │ ├── es_MX │ ├── es_NI │ ├── es_PA │ ├── es_PE │ ├── es_PR │ ├── es_PY │ ├── es_SV │ ├── es_US │ ├── es_UY │ ├── es_VE │ ├── et_EE │ ├── eu_ES │ ├── eu_ES@euro │ ├── fa_IR │ ├── ff_SN │ ├── fi_FI │ ├── fi_FI@euro │ ├── fil_PH │ ├── fo_FO │ ├── fr_BE │ ├── fr_BE@euro │ ├── fr_CA │ ├── fr_CH │ ├── fr_FR │ ├── fr_FR@euro │ ├── fr_LU │ ├── fr_LU@euro │ ├── fur_IT │ ├── fy_DE │ ├── fy_NL │ ├── ga_IE │ ├── ga_IE@euro │ ├── gd_GB │ ├── gez_ER │ ├── gez_ER@abegede │ ├── gez_ET │ ├── gez_ET@abegede │ ├── gl_ES │ ├── gl_ES@euro │ ├── gu_IN │ ├── gv_GB │ ├── ha_NG │ ├── he_IL │ ├── hi_IN │ ├── hne_IN │ ├── hr_HR │ ├── hsb_DE │ ├── ht_HT │ ├── hu_HU │ ├── hy_AM │ ├── i18n │ ├── ia_FR │ ├── id_ID │ ├── ig_NG │ ├── ik_CA │ ├── is_IS │ ├── iso14651_t1 │ ├── iso14651_t1_common │ ├── iso14651_t1_pinyin │ ├── it_CH │ ├── it_IT │ ├── it_IT@euro │ ├── iu_CA │ ├── iw_IL │ ├── ja_JP │ ├── ka_GE │ ├── kk_KZ │ ├── kl_GL │ ├── km_KH │ ├── kn_IN │ ├── ko_KR │ ├── kok_IN │ ├── ks_IN │ ├── ks_IN@devanagari │ ├── ku_TR │ ├── kw_GB │ ├── ky_KG │ ├── lb_LU │ ├── lg_UG │ ├── li_BE │ ├── li_NL │ ├── lij_IT │ ├── lo_LA │ ├── lt_LT │ ├── lv_LV │ ├── mag_IN │ ├── mai_IN │ ├── mg_MG │ ├── mhr_RU │ ├── mi_NZ │ ├── mk_MK │ ├── ml_IN │ ├── mn_MN │ ├── mni_IN │ ├── mr_IN │ ├── ms_MY │ ├── mt_MT │ ├── my_MM │ ├── nan_TW@latin │ ├── nb_NO │ ├── nds_DE │ ├── nds_NL │ ├── ne_NP │ ├── nhn_MX │ ├── niu_NU │ ├── niu_NZ │ ├── nl_AW │ ├── nl_BE │ ├── nl_BE@euro │ ├── nl_NL │ ├── nl_NL@euro │ ├── nn_NO │ ├── nr_ZA │ ├── nso_ZA │ ├── oc_FR │ ├── om_ET │ ├── om_KE │ ├── or_IN │ ├── os_RU │ ├── pa_IN │ ├── pa_PK │ ├── pap_AN │ ├── pl_PL │ ├── ps_AF │ ├── pt_BR │ ├── pt_PT │ ├── pt_PT@euro │ ├── ro_RO │ ├── ru_RU │ ├── ru_UA │ ├── rw_RW │ ├── sa_IN │ ├── sat_IN │ ├── sc_IT │ ├── sd_IN │ ├── sd_IN@devanagari │ ├── se_NO │ ├── shs_CA │ ├── si_LK │ ├── sid_ET │ ├── sk_SK │ ├── sl_SI │ ├── so_DJ │ ├── so_ET │ ├── so_KE │ ├── so_SO │ ├── sq_AL │ ├── sq_MK │ ├── sr_ME │ ├── sr_RS │ ├── sr_RS@latin │ ├── ss_ZA │ ├── st_ZA │ ├── sv_FI │ ├── sv_FI@euro │ ├── sv_SE │ ├── sw_KE │ ├── sw_TZ │ ├── szl_PL │ ├── ta_IN │ ├── ta_LK │ ├── te_IN │ ├── tg_TJ │ ├── th_TH │ ├── ti_ER │ ├── ti_ET │ ├── tig_ER │ ├── tk_TM │ ├── tl_PH │ ├── tn_ZA │ ├── tr_CY │ ├── tr_TR │ ├── translit_circle │ ├── translit_cjk_compat │ ├── translit_cjk_variants │ ├── translit_combining │ ├── translit_compat │ ├── translit_font │ ├── translit_fraction │ ├── translit_hangul │ ├── translit_narrow │ ├── translit_neutral │ ├── translit_small │ ├── translit_wide │ ├── ts_ZA │ ├── tt_RU │ ├── tt_RU@iqtelif │ ├── ug_CN │ ├── uk_UA │ ├── unm_US │ ├── ur_IN │ ├── ur_PK │ ├── uz_UZ │ ├── uz_UZ@cyrillic │ ├── ve_ZA │ ├── vi_VN │ ├── wa_BE │ ├── wa_BE@euro │ ├── wae_CH │ ├── wal_ET │ ├── wo_SN │ ├── xh_ZA │ ├── yi_US │ ├── yo_NG │ ├── yue_HK │ ├── zh_CN │ ├── zh_HK │ ├── zh_SG │ ├── zh_TW │ └── zu_ZA ├── show-ucs-data.c ├── si_LK.in ├── sort-test.sh ├── sv_SE.in ├── tests-mbwc │ ├── dat_isw-funcs.h │ ├── dat_iswalnum.c │ ├── dat_iswalpha.c │ ├── dat_iswcntrl.c │ ├── dat_iswctype.c │ ├── dat_iswdigit.c │ ├── dat_iswgraph.c │ ├── dat_iswlower.c │ ├── dat_iswprint.c │ ├── dat_iswpunct.c │ ├── dat_iswspace.c │ ├── dat_iswupper.c │ ├── dat_iswxdigit.c │ ├── dat_mblen.c │ ├── dat_mbrlen.c │ ├── dat_mbrtowc.c │ ├── dat_mbsrtowcs.c │ ├── dat_mbstowcs.c │ ├── dat_mbtowc.c │ ├── dat_strcoll.c │ ├── dat_strfmon.c │ ├── dat_strxfrm.c │ ├── dat_swscanf.c │ ├── dat_tow-funcs.h │ ├── dat_towctrans.c │ ├── dat_towlower.c │ ├── dat_towupper.c │ ├── dat_wcrtomb.c │ ├── dat_wcscat.c │ ├── dat_wcschr.c │ ├── dat_wcscmp.c │ ├── dat_wcscoll.c │ ├── dat_wcscpy.c │ ├── dat_wcscspn.c │ ├── dat_wcslen.c │ ├── dat_wcsncat.c │ ├── dat_wcsncmp.c │ ├── dat_wcsncpy.c │ ├── dat_wcspbrk.c │ ├── dat_wcsrtombs.c │ ├── dat_wcsspn.c │ ├── dat_wcsstr.c │ ├── dat_wcstod.c │ ├── dat_wcstok.c │ ├── dat_wcstombs.c │ ├── dat_wcswidth.c │ ├── dat_wcsxfrm.c │ ├── dat_wctob.c │ ├── dat_wctomb.c │ ├── dat_wctrans.c │ ├── dat_wctype.c │ ├── dat_wcwidth.c │ ├── tgn_funcdef.h │ ├── tgn_locdef.h │ ├── tsp_common.c │ ├── tst_funcs.h │ ├── tst_iswalnum.c │ ├── tst_iswalpha.c │ ├── tst_iswcntrl.c │ ├── tst_iswctype.c │ ├── tst_iswdigit.c │ ├── tst_iswgraph.c │ ├── tst_iswlower.c │ ├── tst_iswprint.c │ ├── tst_iswpunct.c │ ├── tst_iswspace.c │ ├── tst_iswupper.c │ ├── tst_iswxdigit.c │ ├── tst_mblen.c │ ├── tst_mbrlen.c │ ├── tst_mbrtowc.c │ ├── tst_mbsrtowcs.c │ ├── tst_mbstowcs.c │ ├── tst_mbtowc.c │ ├── tst_strcoll.c │ ├── tst_strfmon.c │ ├── tst_strxfrm.c │ ├── tst_swscanf.c │ ├── tst_towctrans.c │ ├── tst_towlower.c │ ├── tst_towupper.c │ ├── tst_types.h │ ├── tst_wcrtomb.c │ ├── tst_wcscat.c │ ├── tst_wcschr.c │ ├── tst_wcscmp.c │ ├── tst_wcscoll.c │ ├── tst_wcscpy.c │ ├── tst_wcscspn.c │ ├── tst_wcslen.c │ ├── tst_wcsncat.c │ ├── tst_wcsncmp.c │ ├── tst_wcsncpy.c │ ├── tst_wcspbrk.c │ ├── tst_wcsrtombs.c │ ├── tst_wcsspn.c │ ├── tst_wcsstr.c │ ├── tst_wcstod.c │ ├── tst_wcstok.c │ ├── tst_wcstombs.c │ ├── tst_wcswidth.c │ ├── tst_wcsxfrm.c │ ├── tst_wctob.c │ ├── tst_wctomb.c │ ├── tst_wctrans.c │ ├── tst_wctype.c │ └── tst_wcwidth.c ├── tests │ ├── test1.cm │ ├── test1.def │ ├── test2.cm │ ├── test2.def │ ├── test3.cm │ ├── test3.def │ ├── test4.cm │ ├── test4.def │ ├── test5.cm │ ├── test5.def │ ├── test5.ds │ ├── test6.c │ ├── test6.cm │ ├── test6.def │ ├── test6.ds │ ├── test7.cm │ ├── test7.def │ └── trans.def ├── th_TH.in ├── tr_TR.in ├── tst-ctype-de_DE.ISO-8859-1.in ├── tst-ctype.c ├── tst-ctype.sh ├── tst-digits.c ├── tst-fmon-locales │ ├── tstfmon_n01y12 │ ├── tstfmon_n02n40 │ ├── tstfmon_n10y31 │ ├── tstfmon_n11y41 │ ├── tstfmon_n12y11 │ ├── tstfmon_n20n32 │ ├── tstfmon_n30y20 │ ├── tstfmon_n41n00 │ ├── tstfmon_y01y10 │ ├── tstfmon_y02n22 │ ├── tstfmon_y22n42 │ ├── tstfmon_y30y21 │ ├── tstfmon_y32n31 │ ├── tstfmon_y40y00 │ └── tstfmon_y42n21 ├── tst-fmon.c ├── tst-fmon.data ├── tst-fmon.sh ├── tst-langinfo.c ├── tst-langinfo.sh ├── tst-leaks.c ├── tst-locale.sh ├── tst-mbswcs.sh ├── tst-mbswcs1.c ├── tst-mbswcs2.c ├── tst-mbswcs3.c ├── tst-mbswcs4.c ├── tst-mbswcs5.c ├── tst-mbswcs6.c ├── tst-numeric.c ├── tst-numeric.data ├── tst-numeric.sh ├── tst-rpmatch.c ├── tst-rpmatch.sh ├── tst-setlocale.c ├── tst-setlocale2.c ├── tst-sscanf.c ├── tst-strfmon1.c ├── tst-trans.c ├── tst-trans.sh ├── tst-wctype.c ├── tst-wctype.input ├── tst-wctype.sh ├── tst-xlocale1.c ├── tst-xlocale2.c └── xfrm-test.c ├── login ├── Makefile ├── Versions ├── endutxent.c ├── forkpty.c ├── getlogin.c ├── getlogin_r.c ├── getlogin_r_chk.c ├── getpt.c ├── getutent.c ├── getutent_r.c ├── getutid.c ├── getutid_r.c ├── getutline.c ├── getutline_r.c ├── getutmp.c ├── getutmpx.c ├── getutxent.c ├── getutxid.c ├── getutxline.c ├── grantpt.c ├── lastlog.h ├── login.c ├── login_tty.c ├── logout.c ├── logwtmp.c ├── openpty.c ├── programs │ ├── pt_chown.c │ └── utmpdump.c ├── ptsname.c ├── ptsname_r_chk.c ├── pty.h ├── pututxline.c ├── setlogin.c ├── setutxent.c ├── tst-grantpt.c ├── tst-utmp.c ├── tst-utmpx.c ├── unlockpt.c ├── updwtmp.c ├── updwtmpx.c ├── utmp-private.h ├── utmp.h ├── utmp_file.c ├── utmpname.c └── utmpxname.c ├── mach ├── Machrules ├── Makefile ├── Versions ├── devstream.c ├── err_boot.sub ├── err_ipc.sub ├── err_kern.sub ├── err_mach.sub ├── err_server.sub ├── err_us.sub ├── error_compat.c ├── errorlib.h ├── errstring.c ├── errsystems.awk ├── lock-intern.h ├── mach.h ├── mach │ ├── error.h │ ├── mach.h │ ├── mach_traps.h │ └── mig_support.h ├── mach_error.c ├── mach_error.h ├── mach_init.c ├── mach_init.h ├── mig-alloc.c ├── mig-dealloc.c ├── mig-reply.c ├── mig_strncpy.c ├── msg-destroy.c ├── msg.c ├── msgserver.c ├── mutex-init.c ├── mutex-solid.c ├── setup-thread.c ├── shortcut.awk ├── spin-lock.c ├── spin-lock.h ├── spin-solid.c └── syscalls.awk ├── malloc ├── Depend ├── Makefile ├── Versions ├── arena.c ├── hooks.c ├── malloc.c ├── malloc.h ├── mallocbug.c ├── mcheck-init.c ├── mcheck.c ├── mcheck.h ├── memusage.c ├── memusage.sh ├── memusagestat.c ├── morecore.c ├── mtrace.c ├── mtrace.pl ├── obstack.c ├── obstack.h ├── set-freeres.c ├── thread-freeres.c ├── tst-calloc.c ├── tst-malloc-usable.c ├── tst-malloc.c ├── tst-mallocfork.c ├── tst-mallocstate.c ├── tst-mcheck.c ├── tst-mtrace.c ├── tst-mtrace.sh ├── tst-obstack.c ├── tst-trim1.c └── tst-valloc.c ├── manual ├── Makefile ├── argp.texi ├── arith.texi ├── charset.texi ├── conf.texi ├── contrib.texi ├── creature.texi ├── crypt.texi ├── ctype.texi ├── debug.texi ├── dir ├── errno.texi ├── examples │ ├── README │ ├── add.c │ ├── argp-ex1.c │ ├── argp-ex2.c │ ├── argp-ex3.c │ ├── argp-ex4.c │ ├── atexit.c │ ├── db.c │ ├── dir.c │ ├── dir2.c │ ├── execinfo.c │ ├── filecli.c │ ├── filesrv.c │ ├── fmtmsgexpl.c │ ├── genpass.c │ ├── inetcli.c │ ├── inetsrv.c │ ├── isockad.c │ ├── longopt.c │ ├── memopen.c │ ├── memstrm.c │ ├── mkfsock.c │ ├── mkisock.c │ ├── mygetpass.c │ ├── pipe.c │ ├── popen.c │ ├── rprintf.c │ ├── search.c │ ├── select.c │ ├── setjmp.c │ ├── sigh1.c │ ├── sigusr.c │ ├── stpcpy.c │ ├── strdupa.c │ ├── strftim.c │ ├── strncat.c │ ├── subopt.c │ ├── swapcontext.c │ ├── termios.c │ ├── testopt.c │ ├── testpass.c │ └── timeval_subtract.c ├── fdl-1.3.texi ├── filesys.texi ├── freemanuals.texi ├── getopt.texi ├── header.texi ├── install.texi ├── intro.texi ├── io.texi ├── job.texi ├── lang.texi ├── lgpl-2.1.texi ├── libc-texinfo.sh ├── libc.texinfo ├── libcbook.texi ├── libm-err-tab.pl ├── llio.texi ├── locale.texi ├── macros.texi ├── maint.texi ├── math.texi ├── memory.texi ├── message.texi ├── nss.texi ├── nsswitch.texi ├── pattern.texi ├── pipe.texi ├── platform.texi ├── process.texi ├── resource.texi ├── search.texi ├── setjmp.texi ├── signal.texi ├── socket.texi ├── startup.texi ├── stdio-fp.c ├── stdio.texi ├── string.texi ├── summary.awk ├── sysinfo.texi ├── syslog.texi ├── terminal.texi ├── texinfo.tex ├── texis.awk ├── threads.texi ├── time.texi ├── tsort.awk ├── users.texi └── xtract-typefun.awk ├── math ├── Makefile ├── README.libm-test ├── Versions ├── atest-exp.c ├── atest-exp2.c ├── atest-sincos.c ├── basic-test.c ├── bits │ ├── cmathcalls.h │ ├── math-finite.h │ └── mathcalls.h ├── bug-nextafter.c ├── bug-nexttoward.c ├── bug-tgmath1.c ├── cabs.c ├── cabsf.c ├── cabsl.c ├── carg.c ├── cargf.c ├── cargl.c ├── cimag.c ├── cimagf.c ├── cimagl.c ├── complex.h ├── conj.c ├── conjf.c ├── conjl.c ├── creal.c ├── crealf.c ├── creall.c ├── divtc3.c ├── e_acoshl.c ├── e_acosl.c ├── e_asinl.c ├── e_atan2l.c ├── e_atanhl.c ├── e_coshl.c ├── e_exp10.c ├── e_exp10f.c ├── e_exp10l.c ├── e_exp2l.c ├── e_expl.c ├── e_fmodl.c ├── e_gammal_r.c ├── e_hypotl.c ├── e_j0l.c ├── e_j1l.c ├── e_jnl.c ├── e_lgammal_r.c ├── e_log10l.c ├── e_log2l.c ├── e_logl.c ├── e_powl.c ├── e_rem_pio2l.c ├── e_scalb.c ├── e_scalbf.c ├── e_scalbl.c ├── e_sinhl.c ├── e_sqrtl.c ├── fclrexcpt.c ├── fedisblxcpt.c ├── feenablxcpt.c ├── fegetenv.c ├── fegetexcept.c ├── fegetround.c ├── feholdexcpt.c ├── fenv.h ├── fesetenv.c ├── fesetround.c ├── feupdateenv.c ├── fgetexcptflg.c ├── fpu_control.c ├── fraiseexcpt.c ├── fsetexcptflg.c ├── ftestexcept.c ├── gen-libm-test.pl ├── ieee-math.c ├── k_casinh.c ├── k_casinhf.c ├── k_casinhl.c ├── k_cosl.c ├── k_rem_pio2l.c ├── k_sincosl.c ├── k_sinl.c ├── k_tanl.c ├── libm-test.inc ├── machine │ └── asm.h ├── math.h ├── multc3.c ├── s_asinhl.c ├── s_atanl.c ├── 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 ├── s_erfl.c ├── s_expm1l.c ├── s_fdim.c ├── s_fdimf.c ├── s_fdiml.c ├── s_fma.c ├── s_fmaf.c ├── s_fmal.c ├── s_fmax.c ├── s_fmaxf.c ├── s_fmaxl.c ├── s_fmin.c ├── s_fminf.c ├── s_fminl.c ├── s_ldexp.c ├── s_ldexpf.c ├── s_ldexpl.c ├── s_log1pl.c ├── s_nan.c ├── s_nanf.c ├── s_nanl.c ├── s_nextafter.c ├── s_nexttowardf.c ├── s_nexttowardl.c ├── s_significand.c ├── s_significandf.c ├── s_significandl.c ├── s_tanhl.c ├── setfpucw.c ├── t_sincosl.c ├── test-double.c ├── test-fenv.c ├── test-float.c ├── test-fpucw.c ├── test-idouble.c ├── test-ifloat.c ├── test-ildoubl.c ├── test-ldouble.c ├── test-matherr.c ├── test-misc.c ├── test-powl.c ├── test-snan.c ├── test-tgmath-int.c ├── test-tgmath-ret.c ├── test-tgmath.c ├── test-tgmath2.c ├── tgmath.h ├── tst-CMPLX.c ├── tst-CMPLX2.c ├── tst-definitions.c ├── w_acos.c ├── w_acosf.c ├── w_acosh.c ├── w_acoshf.c ├── w_acoshl.c ├── w_acosl.c ├── w_asin.c ├── w_asinf.c ├── w_asinl.c ├── w_atan2.c ├── w_atan2f.c ├── w_atan2l.c ├── w_atanh.c ├── w_atanhf.c ├── w_atanhl.c ├── w_cosh.c ├── w_coshf.c ├── w_coshl.c ├── w_drem.c ├── w_dremf.c ├── w_dreml.c ├── w_exp10.c ├── w_exp10f.c ├── w_exp10l.c ├── w_exp2.c ├── w_exp2f.c ├── w_exp2l.c ├── w_expl.c ├── w_fmod.c ├── w_fmodf.c ├── w_fmodl.c ├── w_hypot.c ├── w_hypotf.c ├── w_hypotl.c ├── w_ilogb.c ├── w_ilogbf.c ├── w_ilogbl.c ├── w_j0.c ├── w_j0f.c ├── w_j0l.c ├── w_j1.c ├── w_j1f.c ├── w_j1l.c ├── w_jn.c ├── w_jnf.c ├── w_jnl.c ├── w_lgamma.c ├── w_lgamma_r.c ├── w_lgammaf.c ├── w_lgammaf_r.c ├── w_lgammal.c ├── w_lgammal_r.c ├── w_log.c ├── w_log10.c ├── w_log10f.c ├── w_log10l.c ├── w_log2.c ├── w_log2f.c ├── w_log2l.c ├── w_logf.c ├── w_logl.c ├── w_pow.c ├── w_powf.c ├── w_powl.c ├── w_remainder.c ├── w_remainderf.c ├── w_remainderl.c ├── w_scalb.c ├── w_scalbf.c ├── w_scalbl.c ├── w_sinh.c ├── w_sinhf.c ├── w_sinhl.c ├── w_sqrt.c ├── w_sqrtf.c ├── w_sqrtl.c ├── w_tgamma.c ├── w_tgammaf.c └── w_tgammal.c ├── misc ├── Makefile ├── Versions ├── acct.c ├── ar.h ├── bits │ ├── error.h │ ├── select2.h │ ├── stab.def │ ├── syslog-ldbl.h │ └── syslog.h ├── brk.c ├── bug-hsearch1.c ├── chflags.c ├── chroot.c ├── daemon.c ├── dirname.c ├── efgcvt.c ├── efgcvt_r.c ├── err.c ├── err.h ├── error.c ├── error.h ├── fchflags.c ├── fdatasync.c ├── fgetxattr.c ├── flistxattr.c ├── fremovexattr.c ├── fsetxattr.c ├── fstab.c ├── fstab.h ├── fsync.c ├── ftruncate.c ├── ftruncate64.c ├── futimes.c ├── futimesat.c ├── getauxval.c ├── getclktck.c ├── getdomain.c ├── getdtsz.c ├── gethostid.c ├── gethostname.c ├── getloadavg.c ├── getpagesize.c ├── getpass.c ├── getsysstats.c ├── getttyent.c ├── getusershell.c ├── getxattr.c ├── gtty.c ├── hsearch.c ├── hsearch_r.c ├── ifunc-impl-list.c ├── init-misc.c ├── insremque.c ├── ioctl.c ├── lgetxattr.c ├── libgen.h ├── listxattr.c ├── llistxattr.c ├── lremovexattr.c ├── lsearch.c ├── lsetxattr.c ├── lutimes.c ├── madvise.c ├── mincore.c ├── mkdtemp.c ├── mkostemp.c ├── mkostemp64.c ├── mkostemps.c ├── mkostemps64.c ├── mkstemp.c ├── mkstemp64.c ├── mkstemps.c ├── mkstemps64.c ├── mktemp.c ├── mlock.c ├── mlockall.c ├── mmap.c ├── mmap64.c ├── mntent.c ├── mntent.h ├── mntent_r.c ├── mprotect.c ├── msync.c ├── munlock.c ├── munlockall.c ├── munmap.c ├── preadv.c ├── preadv64.c ├── pselect.c ├── ptrace.c ├── pwritev.c ├── pwritev64.c ├── qefgcvt.c ├── qefgcvt_r.c ├── readv.c ├── reboot.c ├── regexp.c ├── regexp.h ├── remap_file_pages.c ├── removexattr.c ├── revoke.c ├── sbrk.c ├── search.h ├── select.c ├── setdomain.c ├── setegid.c ├── seteuid.c ├── sethostid.c ├── sethostname.c ├── setregid.c ├── setreuid.c ├── setxattr.c ├── sgtty.h ├── sstk.c ├── stab.h ├── stty.c ├── swapoff.c ├── swapon.c ├── sync.c ├── syncfs.c ├── sys │ ├── auxv.h │ ├── cdefs.h │ ├── dir.h │ ├── file.h │ ├── ioctl.h │ ├── mman.h │ ├── param.h │ ├── queue.h │ ├── select.h │ ├── syslog.h │ ├── uio.h │ ├── ustat.h │ └── xattr.h ├── syscall.c ├── syscall.h ├── sysexits.h ├── syslog.c ├── syslog.h ├── truncate.c ├── truncate64.c ├── tsearch.c ├── tst-dirname.c ├── tst-efgcvt.c ├── tst-error1.c ├── tst-fdset.c ├── tst-hsearch.c ├── tst-insremque.c ├── tst-mntent.c ├── tst-mntent2.c ├── tst-pselect.c ├── tst-tsearch.c ├── ttyent.h ├── ttyslot.c ├── ualarm.c ├── usleep.c ├── ustat.c ├── ustat.h ├── utimes.c ├── vhangup.c └── writev.c ├── nis ├── Depend ├── Makefile ├── Versions ├── libnsl.h ├── nis_add.c ├── nis_addmember.c ├── nis_call.c ├── nis_callback.c ├── nis_checkpoint.c ├── nis_clone_dir.c ├── nis_clone_obj.c ├── nis_clone_res.c ├── nis_creategroup.c ├── nis_defaults.c ├── nis_destroygroup.c ├── nis_domain_of.c ├── nis_domain_of_r.c ├── nis_error.c ├── nis_error.h ├── nis_file.c ├── nis_findserv.c ├── nis_free.c ├── nis_getservlist.c ├── nis_hash.c ├── nis_intern.h ├── nis_ismember.c ├── nis_local_names.c ├── nis_lookup.c ├── nis_mkdir.c ├── nis_modify.c ├── nis_ping.c ├── nis_print.c ├── nis_print_group_entry.c ├── nis_remove.c ├── nis_removemember.c ├── nis_rmdir.c ├── nis_server.c ├── nis_subr.c ├── nis_table.c ├── nis_util.c ├── nis_verifygroup.c ├── nis_xdr.c ├── nis_xdr.h ├── nisplus-parser.h ├── nss ├── nss-default.c ├── nss-nis.c ├── nss-nis.h ├── nss-nisplus.c ├── nss-nisplus.h ├── nss_compat │ ├── compat-grp.c │ ├── compat-initgroups.c │ ├── compat-pwd.c │ └── compat-spwd.c ├── nss_nis │ ├── nis-alias.c │ ├── nis-ethers.c │ ├── nis-grp.c │ ├── nis-hosts.c │ ├── nis-initgroups.c │ ├── nis-netgrp.c │ ├── nis-network.c │ ├── nis-proto.c │ ├── nis-publickey.c │ ├── nis-pwd.c │ ├── nis-rpc.c │ ├── nis-service.c │ └── nis-spwd.c ├── nss_nisplus │ ├── nisplus-alias.c │ ├── nisplus-ethers.c │ ├── nisplus-grp.c │ ├── nisplus-hosts.c │ ├── nisplus-initgroups.c │ ├── nisplus-netgrp.c │ ├── nisplus-network.c │ ├── nisplus-parser.c │ ├── nisplus-proto.c │ ├── nisplus-publickey.c │ ├── nisplus-pwd.c │ ├── nisplus-rpc.c │ ├── nisplus-service.c │ └── nisplus-spwd.c ├── rpcsvc │ ├── nis.h │ ├── nis.x │ ├── nis_callback.h │ ├── nis_callback.x │ ├── nis_object.x │ ├── nis_tags.h │ ├── nislib.h │ ├── yp.h │ ├── yp.x │ ├── yp_prot.h │ ├── ypclnt.h │ └── ypupd.h ├── yp_xdr.c ├── ypclnt.c └── ypupdate_xdr.c ├── nptl ├── ANNOUNCE ├── Banner ├── ChangeLog ├── DESIGN-barrier.txt ├── DESIGN-condvar.txt ├── DESIGN-rwlock.txt ├── DESIGN-sem.txt ├── DESIGN-systemtap-probes.txt ├── Makeconfig ├── Makefile ├── TODO ├── TODO-kernel ├── TODO-testing ├── Versions ├── alloca_cutoff.c ├── allocatestack.c ├── cancellation.c ├── cleanup.c ├── cleanup_compat.c ├── cleanup_defer.c ├── cleanup_defer_compat.c ├── cleanup_routine.c ├── cond-perf.c ├── configure ├── descr.h ├── eintr.c ├── elision-conf.h ├── errno-loc.c ├── events.c ├── forward.c ├── herrno.c ├── libc-cancellation.c ├── libc-cleanup.c ├── lowlevellock.h ├── nptl-init.c ├── old_pthread_atfork.c ├── old_pthread_cond_broadcast.c ├── old_pthread_cond_destroy.c ├── old_pthread_cond_init.c ├── old_pthread_cond_signal.c ├── old_pthread_cond_timedwait.c ├── old_pthread_cond_wait.c ├── perf.c ├── pt-allocrtsig.c ├── pt-cleanup.c ├── pt-crti.S ├── pt-raise.c ├── pt-system.c ├── pthread-errnos.sym ├── pthreadP.h ├── pthread_atfork.c ├── pthread_attr_destroy.c ├── pthread_attr_getdetachstate.c ├── pthread_attr_getguardsize.c ├── pthread_attr_getinheritsched.c ├── pthread_attr_getschedparam.c ├── pthread_attr_getschedpolicy.c ├── pthread_attr_getscope.c ├── pthread_attr_getstack.c ├── pthread_attr_getstackaddr.c ├── pthread_attr_getstacksize.c ├── pthread_attr_init.c ├── pthread_attr_setdetachstate.c ├── pthread_attr_setguardsize.c ├── pthread_attr_setinheritsched.c ├── pthread_attr_setschedparam.c ├── pthread_attr_setschedpolicy.c ├── pthread_attr_setscope.c ├── pthread_attr_setstack.c ├── pthread_attr_setstackaddr.c ├── pthread_attr_setstacksize.c ├── pthread_barrier_destroy.c ├── pthread_barrier_init.c ├── pthread_barrier_wait.c ├── pthread_barrierattr_destroy.c ├── pthread_barrierattr_getpshared.c ├── pthread_barrierattr_init.c ├── pthread_barrierattr_setpshared.c ├── pthread_cancel.c ├── pthread_clock_gettime.c ├── pthread_clock_settime.c ├── pthread_cond_broadcast.c ├── pthread_cond_destroy.c ├── pthread_cond_init.c ├── pthread_cond_signal.c ├── pthread_cond_timedwait.c ├── pthread_cond_wait.c ├── pthread_condattr_destroy.c ├── pthread_condattr_getclock.c ├── pthread_condattr_getpshared.c ├── pthread_condattr_init.c ├── pthread_condattr_setclock.c ├── pthread_condattr_setpshared.c ├── pthread_create.c ├── pthread_detach.c ├── pthread_equal.c ├── pthread_exit.c ├── pthread_getattr_default_np.c ├── pthread_getattr_np.c ├── pthread_getconcurrency.c ├── pthread_getcpuclockid.c ├── pthread_getschedparam.c ├── pthread_getspecific.c ├── pthread_join.c ├── pthread_key_create.c ├── pthread_key_delete.c ├── pthread_kill_other_threads.c ├── pthread_mutex_consistent.c ├── pthread_mutex_destroy.c ├── pthread_mutex_getprioceiling.c ├── pthread_mutex_init.c ├── pthread_mutex_lock.c ├── pthread_mutex_setprioceiling.c ├── pthread_mutex_timedlock.c ├── pthread_mutex_trylock.c ├── pthread_mutex_unlock.c ├── pthread_mutexattr_destroy.c ├── pthread_mutexattr_getprioceiling.c ├── pthread_mutexattr_getprotocol.c ├── pthread_mutexattr_getpshared.c ├── pthread_mutexattr_getrobust.c ├── pthread_mutexattr_gettype.c ├── pthread_mutexattr_init.c ├── pthread_mutexattr_setprioceiling.c ├── pthread_mutexattr_setprotocol.c ├── pthread_mutexattr_setpshared.c ├── pthread_mutexattr_setrobust.c ├── pthread_mutexattr_settype.c ├── pthread_once.c ├── pthread_rwlock_destroy.c ├── pthread_rwlock_init.c ├── pthread_rwlock_rdlock.c ├── pthread_rwlock_timedrdlock.c ├── pthread_rwlock_timedwrlock.c ├── pthread_rwlock_tryrdlock.c ├── pthread_rwlock_trywrlock.c ├── pthread_rwlock_unlock.c ├── pthread_rwlock_wrlock.c ├── pthread_rwlockattr_destroy.c ├── pthread_rwlockattr_getkind_np.c ├── pthread_rwlockattr_getpshared.c ├── pthread_rwlockattr_init.c ├── pthread_rwlockattr_setkind_np.c ├── pthread_rwlockattr_setpshared.c ├── pthread_self.c ├── pthread_setattr_default_np.c ├── pthread_setcancelstate.c ├── pthread_setcanceltype.c ├── pthread_setconcurrency.c ├── pthread_setegid.c ├── pthread_seteuid.c ├── pthread_setgid.c ├── pthread_setregid.c ├── pthread_setresgid.c ├── pthread_setresuid.c ├── pthread_setreuid.c ├── pthread_setschedparam.c ├── pthread_setschedprio.c ├── pthread_setspecific.c ├── pthread_setuid.c ├── pthread_spin_destroy.c ├── pthread_spin_init.c ├── pthread_spin_lock.c ├── pthread_spin_trylock.c ├── pthread_spin_unlock.c ├── pthread_testcancel.c ├── pthread_timedjoin.c ├── pthread_tryjoin.c ├── res.c ├── sem_close.c ├── sem_destroy.c ├── sem_getvalue.c ├── sem_init.c ├── sem_open.c ├── sem_unlink.c ├── semaphore.h ├── semaphoreP.h ├── shlib-versions ├── sigaction.c ├── sockperf.c ├── sysdeps │ ├── i386 │ │ ├── Makefile │ │ ├── i486 │ │ │ └── pthread_spin_trylock.S │ │ ├── i586 │ │ │ └── pthread_spin_trylock.S │ │ ├── i686 │ │ │ ├── Makefile │ │ │ ├── pthread_spin_trylock.S │ │ │ └── tls.h │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_lock.S │ │ ├── pthread_spin_unlock.S │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── powerpc │ │ ├── Makefile │ │ ├── pthread_spin_lock.c │ │ ├── pthread_spin_trylock.c │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── pthread │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── aio_misc.h │ │ ├── allocalim.h │ │ ├── bits │ │ │ ├── libc-lock.h │ │ │ ├── libc-lockP.h │ │ │ ├── sigthread.h │ │ │ └── stdio-lock.h │ │ ├── configure │ │ ├── configure.in │ │ ├── createthread.c │ │ ├── flockfile.c │ │ ├── ftrylockfile.c │ │ ├── funlockfile.c │ │ ├── gai_misc.h │ │ ├── librt-cancellation.c │ │ ├── list.h │ │ ├── malloc-machine.h │ │ ├── posix-timer.h │ │ ├── pt-longjmp.c │ │ ├── pthread-functions.h │ │ ├── pthread.h │ │ ├── pthread_sigmask.c │ │ ├── setxid.h │ │ ├── sigfillset.c │ │ ├── sigprocmask.c │ │ ├── small-macros-fns.c │ │ ├── tcb-offsets.h │ │ ├── timer_create.c │ │ ├── timer_delete.c │ │ ├── timer_getoverr.c │ │ ├── timer_gettime.c │ │ ├── timer_routines.c │ │ ├── timer_settime.c │ │ ├── tst-mqueue8x.c │ │ ├── tst-timer.c │ │ └── unwind-forcedunwind.c │ ├── s390 │ │ ├── Makefile │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_lock.c │ │ ├── pthread_spin_trylock.c │ │ ├── pthread_spin_unlock.c │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── sh │ │ ├── Makefile │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_lock.c │ │ ├── pthread_spin_trylock.S │ │ ├── pthread_spin_unlock.S │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── sparc │ │ ├── Makefile │ │ ├── sparc32 │ │ │ ├── pthread_spin_lock.S │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthreaddef.h │ │ │ └── sparcv9 │ │ │ │ ├── pthread_spin_init.c │ │ │ │ ├── pthread_spin_lock.S │ │ │ │ ├── pthread_spin_trylock.S │ │ │ │ └── pthread_spin_unlock.S │ │ ├── sparc64 │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.S │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthread_spin_unlock.S │ │ │ └── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── unix │ │ └── sysv │ │ │ └── linux │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── aio_misc.h │ │ │ ├── allocrtsig.c │ │ │ ├── bits │ │ │ ├── local_lim.h │ │ │ └── posix_opt.h │ │ │ ├── createthread.c │ │ │ ├── fork.c │ │ │ ├── fork.h │ │ │ ├── getpid.c │ │ │ ├── i386 │ │ │ ├── Implies │ │ │ ├── clone.S │ │ │ ├── createthread.c │ │ │ ├── dl-sysdep.h │ │ │ ├── fork.c │ │ │ ├── i486 │ │ │ │ ├── libc-lowlevellock.S │ │ │ │ ├── lowlevellock.S │ │ │ │ ├── lowlevelrobustlock.S │ │ │ │ ├── pthread_barrier_wait.S │ │ │ │ ├── pthread_cond_broadcast.S │ │ │ │ ├── pthread_cond_signal.S │ │ │ │ ├── pthread_cond_timedwait.S │ │ │ │ ├── pthread_cond_wait.S │ │ │ │ ├── pthread_rwlock_rdlock.S │ │ │ │ ├── pthread_rwlock_timedrdlock.S │ │ │ │ ├── pthread_rwlock_timedwrlock.S │ │ │ │ ├── pthread_rwlock_unlock.S │ │ │ │ ├── pthread_rwlock_wrlock.S │ │ │ │ ├── sem_post.S │ │ │ │ ├── sem_timedwait.S │ │ │ │ ├── sem_trywait.S │ │ │ │ └── sem_wait.S │ │ │ ├── i586 │ │ │ │ ├── libc-lowlevellock.S │ │ │ │ ├── lowlevellock.S │ │ │ │ ├── lowlevelrobustlock.S │ │ │ │ ├── pthread_barrier_wait.S │ │ │ │ ├── pthread_cond_broadcast.S │ │ │ │ ├── pthread_cond_signal.S │ │ │ │ ├── pthread_cond_timedwait.S │ │ │ │ ├── pthread_cond_wait.S │ │ │ │ ├── pthread_rwlock_rdlock.S │ │ │ │ ├── pthread_rwlock_timedrdlock.S │ │ │ │ ├── pthread_rwlock_timedwrlock.S │ │ │ │ ├── pthread_rwlock_unlock.S │ │ │ │ ├── pthread_rwlock_wrlock.S │ │ │ │ ├── sem_post.S │ │ │ │ ├── sem_timedwait.S │ │ │ │ ├── sem_trywait.S │ │ │ │ └── sem_wait.S │ │ │ ├── i686 │ │ │ │ ├── dl-sysdep.h │ │ │ │ ├── libc-lowlevellock.S │ │ │ │ ├── lowlevellock.S │ │ │ │ ├── lowlevelrobustlock.S │ │ │ │ ├── pthread_barrier_wait.S │ │ │ │ ├── pthread_cond_broadcast.S │ │ │ │ ├── pthread_cond_signal.S │ │ │ │ ├── pthread_cond_timedwait.S │ │ │ │ ├── pthread_cond_wait.S │ │ │ │ ├── pthread_rwlock_rdlock.S │ │ │ │ ├── pthread_rwlock_timedrdlock.S │ │ │ │ ├── pthread_rwlock_timedwrlock.S │ │ │ │ ├── pthread_rwlock_unlock.S │ │ │ │ ├── pthread_rwlock_wrlock.S │ │ │ │ ├── sem_post.S │ │ │ │ ├── sem_timedwait.S │ │ │ │ ├── sem_trywait.S │ │ │ │ └── sem_wait.S │ │ │ ├── i786 │ │ │ │ └── Implies │ │ │ ├── lowlevellock.h │ │ │ ├── not-cancel.h │ │ │ ├── pt-vfork.S │ │ │ ├── pthread_once.S │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_unlock.S │ │ │ ├── smp.h │ │ │ ├── sysdep-cancel.h │ │ │ └── vfork.S │ │ │ ├── internaltypes.h │ │ │ ├── jmp-unwind.c │ │ │ ├── kernel-posix-timers.h │ │ │ ├── libc-lowlevellock.c │ │ │ ├── libc_multiple_threads.c │ │ │ ├── libc_pthread_init.c │ │ │ ├── lowlevelbarrier.sym │ │ │ ├── lowlevelcond.sym │ │ │ ├── lowlevellock.c │ │ │ ├── lowlevelrobustlock.c │ │ │ ├── lowlevelrobustlock.sym │ │ │ ├── lowlevelrwlock.sym │ │ │ ├── mq_notify.c │ │ │ ├── powerpc │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── bits │ │ │ │ ├── local_lim.h │ │ │ │ ├── pthreadtypes.h │ │ │ │ └── semaphore.h │ │ │ ├── createthread.c │ │ │ ├── fork.c │ │ │ ├── lowlevellock.h │ │ │ ├── not-cancel.h │ │ │ ├── powerpc32 │ │ │ │ ├── clone.S │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ ├── powerpc64 │ │ │ │ ├── Versions │ │ │ │ ├── clone.S │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── sysdep-cancel.h │ │ │ │ ├── timer_create.c │ │ │ │ ├── timer_delete.c │ │ │ │ ├── timer_getoverr.c │ │ │ │ ├── timer_gettime.c │ │ │ │ ├── timer_settime.c │ │ │ │ └── vfork.S │ │ │ ├── pt-longjmp.c │ │ │ ├── pthread_attr_setstack.c │ │ │ ├── pthread_attr_setstacksize.c │ │ │ ├── pthread_once.c │ │ │ ├── pthread_spin_unlock.c │ │ │ └── sem_post.c │ │ │ ├── pt-fork.c │ │ │ ├── pt-raise.c │ │ │ ├── pthread-pi-defines.sym │ │ │ ├── pthread_attr_getaffinity.c │ │ │ ├── pthread_attr_setaffinity.c │ │ │ ├── pthread_getaffinity.c │ │ │ ├── pthread_getcpuclockid.c │ │ │ ├── pthread_getname.c │ │ │ ├── pthread_kill.c │ │ │ ├── pthread_mutex_cond_lock.c │ │ │ ├── pthread_setaffinity.c │ │ │ ├── pthread_setname.c │ │ │ ├── pthread_sigqueue.c │ │ │ ├── pthread_yield.c │ │ │ ├── raise.c │ │ │ ├── register-atfork.c │ │ │ ├── rtld-lowlevel.h │ │ │ ├── s390 │ │ │ ├── bits │ │ │ │ ├── pthreadtypes.h │ │ │ │ └── semaphore.h │ │ │ ├── fork.c │ │ │ ├── jmp-unwind.c │ │ │ ├── lowlevellock.h │ │ │ ├── not-cancel.h │ │ │ ├── pthread_once.c │ │ │ ├── s390-32 │ │ │ │ ├── clone.S │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ └── s390-64 │ │ │ │ ├── Versions │ │ │ │ ├── clone.S │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── sysdep-cancel.h │ │ │ │ ├── timer_create.c │ │ │ │ ├── timer_delete.c │ │ │ │ ├── timer_getoverr.c │ │ │ │ ├── timer_gettime.c │ │ │ │ ├── timer_settime.c │ │ │ │ └── vfork.S │ │ │ ├── sem_post.c │ │ │ ├── sem_timedwait.c │ │ │ ├── sem_trywait.c │ │ │ ├── sem_wait.c │ │ │ ├── sh │ │ │ ├── bits │ │ │ │ ├── pthreadtypes.h │ │ │ │ └── semaphore.h │ │ │ ├── clone.S │ │ │ ├── createthread.c │ │ │ ├── fork.c │ │ │ ├── libc-lowlevellock.S │ │ │ ├── lowlevel-atomic.h │ │ │ ├── lowlevellock.S │ │ │ ├── lowlevellock.h │ │ │ ├── lowlevelrobustlock.S │ │ │ ├── not-cancel.h │ │ │ ├── pt-vfork.S │ │ │ ├── pthread_barrier_wait.S │ │ │ ├── pthread_cond_broadcast.S │ │ │ ├── pthread_cond_signal.S │ │ │ ├── pthread_cond_timedwait.S │ │ │ ├── pthread_cond_wait.S │ │ │ ├── pthread_once.S │ │ │ ├── pthread_rwlock_rdlock.S │ │ │ ├── pthread_rwlock_timedrdlock.S │ │ │ ├── pthread_rwlock_timedwrlock.S │ │ │ ├── pthread_rwlock_unlock.S │ │ │ ├── pthread_rwlock_wrlock.S │ │ │ ├── sem_post.S │ │ │ ├── sem_timedwait.S │ │ │ ├── sem_trywait.S │ │ │ ├── sem_wait.S │ │ │ ├── sh4 │ │ │ │ └── lowlevellock.h │ │ │ ├── smp.h │ │ │ ├── sysdep-cancel.h │ │ │ └── vfork.S │ │ │ ├── sigtimedwait.c │ │ │ ├── sigwait.c │ │ │ ├── sigwaitinfo.c │ │ │ ├── sleep.c │ │ │ ├── smp.h │ │ │ ├── sparc │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── aio_cancel.c │ │ │ ├── bits │ │ │ │ ├── local_lim.h │ │ │ │ ├── pthreadtypes.h │ │ │ │ └── semaphore.h │ │ │ ├── fork.c │ │ │ ├── internaltypes.h │ │ │ ├── lowlevellock.h │ │ │ ├── not-cancel.h │ │ │ ├── pthread_barrier_destroy.c │ │ │ ├── pthread_barrier_init.c │ │ │ ├── pthread_barrier_wait.c │ │ │ ├── pthread_once.c │ │ │ ├── sem_init.c │ │ │ ├── sem_post.c │ │ │ ├── sem_timedwait.c │ │ │ ├── sem_wait.c │ │ │ ├── sparc32 │ │ │ │ ├── clone.S │ │ │ │ ├── lowlevellock.c │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── pthread_barrier_wait.c │ │ │ │ ├── sem_post.c │ │ │ │ ├── sem_timedwait.c │ │ │ │ ├── sem_trywait.c │ │ │ │ ├── sem_wait.c │ │ │ │ ├── sparcv9 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cpu_relax.S │ │ │ │ │ ├── pthread_barrier_wait.c │ │ │ │ │ ├── sem_post.c │ │ │ │ │ ├── sem_timedwait.c │ │ │ │ │ ├── sem_trywait.c │ │ │ │ │ └── sem_wait.c │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ └── sparc64 │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── clone.S │ │ │ │ ├── cpu_relax.S │ │ │ │ ├── pt-vfork.S │ │ │ │ ├── sysdep-cancel.h │ │ │ │ ├── timer_create.c │ │ │ │ ├── timer_delete.c │ │ │ │ ├── timer_getoverr.c │ │ │ │ ├── timer_gettime.c │ │ │ │ ├── timer_settime.c │ │ │ │ └── vfork.S │ │ │ ├── structsem.sym │ │ │ ├── timer_create.c │ │ │ ├── timer_delete.c │ │ │ ├── timer_getoverr.c │ │ │ ├── timer_gettime.c │ │ │ ├── timer_routines.c │ │ │ ├── timer_settime.c │ │ │ ├── unregister-atfork.c │ │ │ ├── unwindbuf.sym │ │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes.h │ │ │ │ └── semaphore.h │ │ │ ├── elision-conf.c │ │ │ ├── elision-conf.h │ │ │ ├── elision-lock.c │ │ │ ├── elision-timed.c │ │ │ ├── elision-trylock.c │ │ │ ├── elision-unlock.c │ │ │ ├── force-elision.h │ │ │ ├── hle.h │ │ │ ├── init-arch.c │ │ │ ├── init-arch.h │ │ │ ├── pthread_mutex_cond_lock.c │ │ │ ├── pthread_mutex_lock.c │ │ │ ├── pthread_mutex_timedlock.c │ │ │ └── pthread_mutex_trylock.c │ │ │ └── x86_64 │ │ │ ├── Implies │ │ │ ├── Versions │ │ │ ├── cancellation.S │ │ │ ├── clone.S │ │ │ ├── compat-timer.h │ │ │ ├── fork.c │ │ │ ├── libc-cancellation.S │ │ │ ├── libc-lowlevellock.S │ │ │ ├── librt-cancellation.S │ │ │ ├── lowlevellock.S │ │ │ ├── lowlevellock.h │ │ │ ├── lowlevelrobustlock.S │ │ │ ├── not-cancel.h │ │ │ ├── pt-vfork.S │ │ │ ├── pthread_barrier_wait.S │ │ │ ├── pthread_cond_broadcast.S │ │ │ ├── pthread_cond_signal.S │ │ │ ├── pthread_cond_timedwait.S │ │ │ ├── pthread_cond_wait.S │ │ │ ├── pthread_once.S │ │ │ ├── pthread_rwlock_rdlock.S │ │ │ ├── pthread_rwlock_timedrdlock.S │ │ │ ├── pthread_rwlock_timedwrlock.S │ │ │ ├── pthread_rwlock_unlock.S │ │ │ ├── pthread_rwlock_wrlock.S │ │ │ ├── pthread_setaffinity.c │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_unlock.S │ │ │ ├── sem_post.S │ │ │ ├── sem_timedwait.S │ │ │ ├── sem_trywait.S │ │ │ ├── sem_wait.S │ │ │ ├── sysdep-cancel.h │ │ │ ├── timer_create.c │ │ │ ├── timer_delete.c │ │ │ ├── timer_getoverr.c │ │ │ ├── timer_gettime.c │ │ │ ├── timer_settime.c │ │ │ └── vfork.S │ └── x86_64 │ │ ├── 64 │ │ └── shlib-versions │ │ ├── Makefile │ │ ├── configure │ │ ├── configure.in │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_lock.S │ │ ├── pthread_spin_trylock.S │ │ ├── pthread_spin_unlock.S │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ ├── tls.h │ │ └── x32 │ │ ├── shlib-versions │ │ └── tls.h ├── tpp.c ├── tst-_res1.c ├── tst-_res1mod1.c ├── tst-_res1mod2.c ├── tst-abstime.c ├── tst-align.c ├── tst-align2.c ├── tst-align3.c ├── tst-atfork1.c ├── tst-atfork2.c ├── tst-atfork2mod.c ├── tst-attr1.c ├── tst-attr2.c ├── tst-attr3.c ├── tst-backtrace1.c ├── tst-barrier1.c ├── tst-barrier2.c ├── tst-barrier3.c ├── tst-barrier4.c ├── tst-basic1.c ├── tst-basic2.c ├── tst-basic3.c ├── tst-basic4.c ├── tst-basic5.c ├── tst-basic6.c ├── tst-basic7.c ├── tst-cancel-self-cancelstate.c ├── tst-cancel-self-canceltype.c ├── tst-cancel-self-cleanup.c ├── tst-cancel-self-testcancel.c ├── tst-cancel-self.c ├── tst-cancel-wrappers.sh ├── tst-cancel1.c ├── tst-cancel10.c ├── tst-cancel11.c ├── tst-cancel12.c ├── tst-cancel13.c ├── tst-cancel14.c ├── tst-cancel15.c ├── tst-cancel16.c ├── tst-cancel17.c ├── tst-cancel18.c ├── tst-cancel19.c ├── tst-cancel2.c ├── tst-cancel20.c ├── tst-cancel21-static.c ├── tst-cancel21.c ├── tst-cancel22.c ├── tst-cancel23.c ├── tst-cancel24-static.cc ├── tst-cancel24.cc ├── tst-cancel25.c ├── tst-cancel3.c ├── tst-cancel4.c ├── tst-cancel5.c ├── tst-cancel6.c ├── tst-cancel7.c ├── tst-cancel8.c ├── tst-cancel9.c ├── tst-cancelx1.c ├── tst-cancelx10.c ├── tst-cancelx11.c ├── tst-cancelx12.c ├── tst-cancelx13.c ├── tst-cancelx14.c ├── tst-cancelx15.c ├── tst-cancelx16.c ├── tst-cancelx17.c ├── tst-cancelx18.c ├── tst-cancelx2.c ├── tst-cancelx20.c ├── tst-cancelx21.c ├── tst-cancelx3.c ├── tst-cancelx4.c ├── tst-cancelx5.c ├── tst-cancelx6.c ├── tst-cancelx7.c ├── tst-cancelx8.c ├── tst-cancelx9.c ├── tst-cleanup0.c ├── tst-cleanup0.expect ├── tst-cleanup1.c ├── tst-cleanup2.c ├── tst-cleanup3.c ├── tst-cleanup4.c ├── tst-cleanup4aux.c ├── tst-cleanupx0.c ├── tst-cleanupx0.expect ├── tst-cleanupx1.c ├── tst-cleanupx2.c ├── tst-cleanupx3.c ├── tst-cleanupx4.c ├── tst-clock1.c ├── tst-clock2.c ├── tst-cond-except.c ├── tst-cond1.c ├── tst-cond10.c ├── tst-cond11.c ├── tst-cond12.c ├── tst-cond13.c ├── tst-cond14.c ├── tst-cond15.c ├── tst-cond16.c ├── tst-cond17.c ├── tst-cond18.c ├── tst-cond19.c ├── tst-cond2.c ├── tst-cond20.c ├── tst-cond21.c ├── tst-cond22.c ├── tst-cond23.c ├── tst-cond24.c ├── tst-cond25.c ├── tst-cond3.c ├── tst-cond4.c ├── tst-cond5.c ├── tst-cond6.c ├── tst-cond7.c ├── tst-cond8-static.c ├── tst-cond8.c ├── tst-cond9.c ├── tst-context1.c ├── tst-default-attr.c ├── tst-detach1.c ├── tst-dlsym1.c ├── tst-eintr1.c ├── tst-eintr2.c ├── tst-eintr3.c ├── tst-eintr4.c ├── tst-eintr5.c ├── tst-exec1.c ├── tst-exec2.c ├── tst-exec3.c ├── tst-exec4.c ├── tst-execstack-mod.c ├── tst-execstack.c ├── tst-exit1.c ├── tst-exit2.c ├── tst-exit3.c ├── tst-fini1.c ├── tst-fini1mod.c ├── tst-flock1.c ├── tst-flock2.c ├── tst-fork1.c ├── tst-fork2.c ├── tst-fork3.c ├── tst-fork4.c ├── tst-getpid1.c ├── tst-getpid2.c ├── tst-getpid3.c ├── tst-initializers1-c89.c ├── tst-initializers1-c99.c ├── tst-initializers1-gnu89.c ├── tst-initializers1-gnu99.c ├── tst-initializers1.c ├── tst-join1.c ├── tst-join2.c ├── tst-join3.c ├── tst-join4.c ├── tst-join5.c ├── tst-join6.c ├── tst-key1.c ├── tst-key2.c ├── tst-key3.c ├── tst-key4.c ├── tst-kill1.c ├── tst-kill2.c ├── tst-kill3.c ├── tst-kill4.c ├── tst-kill5.c ├── tst-kill6.c ├── tst-locale1.c ├── tst-locale2.c ├── tst-mutex1.c ├── tst-mutex2.c ├── tst-mutex3.c ├── tst-mutex4.c ├── tst-mutex5.c ├── tst-mutex5a.c ├── tst-mutex6.c ├── tst-mutex7.c ├── tst-mutex7a.c ├── tst-mutex8-static.c ├── tst-mutex8.c ├── tst-mutex9.c ├── tst-mutexpi1.c ├── tst-mutexpi2.c ├── tst-mutexpi3.c ├── tst-mutexpi4.c ├── tst-mutexpi5.c ├── tst-mutexpi5a.c ├── tst-mutexpi6.c ├── tst-mutexpi7.c ├── tst-mutexpi7a.c ├── tst-mutexpi8-static.c ├── tst-mutexpi8.c ├── tst-mutexpi9.c ├── tst-mutexpp1.c ├── tst-mutexpp10.c ├── tst-mutexpp6.c ├── tst-oddstacklimit.c ├── tst-once1.c ├── tst-once2.c ├── tst-once3.c ├── tst-once4.c ├── tst-oncex3.c ├── tst-oncex4.c ├── tst-popen1.c ├── tst-pthread-attr-affinity.c ├── tst-pthread-getattr.c ├── tst-raise1.c ├── tst-robust1.c ├── tst-robust2.c ├── tst-robust3.c ├── tst-robust4.c ├── tst-robust5.c ├── tst-robust6.c ├── tst-robust7.c ├── tst-robust8.c ├── tst-robust9.c ├── tst-robustpi1.c ├── tst-robustpi2.c ├── tst-robustpi3.c ├── tst-robustpi4.c ├── tst-robustpi5.c ├── tst-robustpi6.c ├── tst-robustpi7.c ├── tst-robustpi8.c ├── tst-robustpi9.c ├── tst-rwlock1.c ├── tst-rwlock10.c ├── tst-rwlock11.c ├── tst-rwlock12.c ├── tst-rwlock13.c ├── tst-rwlock14.c ├── tst-rwlock2.c ├── tst-rwlock2a.c ├── tst-rwlock3.c ├── tst-rwlock4.c ├── tst-rwlock5.c ├── tst-rwlock6.c ├── tst-rwlock7.c ├── tst-rwlock8.c ├── tst-rwlock9.c ├── tst-sched1.c ├── tst-sem1.c ├── tst-sem10.c ├── tst-sem11-static.c ├── tst-sem11.c ├── tst-sem12-static.c ├── tst-sem12.c ├── tst-sem13.c ├── tst-sem14.c ├── tst-sem2.c ├── tst-sem3.c ├── tst-sem4.c ├── tst-sem5.c ├── tst-sem6.c ├── tst-sem7.c ├── tst-sem8.c ├── tst-sem9.c ├── tst-setuid1-static.c ├── tst-setuid1.c ├── tst-signal1.c ├── tst-signal2.c ├── tst-signal3.c ├── tst-signal4.c ├── tst-signal5.c ├── tst-signal6.c ├── tst-signal7.c ├── tst-spin1.c ├── tst-spin2.c ├── tst-spin3.c ├── tst-stack1.c ├── tst-stack2.c ├── tst-stack3.c ├── tst-stackguard1-static.c ├── tst-stackguard1.c ├── tst-stdio1.c ├── tst-stdio2.c ├── tst-sysconf.c ├── tst-tls1.c ├── tst-tls2.c ├── tst-tls3.c ├── tst-tls3mod.c ├── tst-tls4.c ├── tst-tls4moda.c ├── tst-tls4modb.c ├── tst-tls5.c ├── tst-tls5.h ├── tst-tls5mod.c ├── tst-tls5moda.c ├── tst-tls5modb.c ├── tst-tls5modc.c ├── tst-tls5modd.c ├── tst-tls5mode.c ├── tst-tls5modf.c ├── tst-tls6.sh ├── tst-tpp.h ├── tst-tsd1.c ├── tst-tsd2.c ├── tst-tsd3.c ├── tst-tsd4.c ├── tst-tsd5.c ├── tst-tsd6.c ├── tst-typesizes.c ├── tst-umask1.c ├── tst-unload.c ├── tst-vfork1.c ├── tst-vfork1x.c ├── tst-vfork2.c ├── tst-vfork2x.c ├── unwind.c ├── vars.c └── version.c ├── nptl_db ├── ChangeLog ├── Makefile ├── Versions ├── db-symbols.awk ├── db-symbols.h ├── db_info.c ├── fetch-value.c ├── proc_service.h ├── shlib-versions ├── structs.def ├── td_init.c ├── td_log.c ├── td_symbol_list.c ├── td_ta_clear_event.c ├── td_ta_delete.c ├── td_ta_enable_stats.c ├── td_ta_event_addr.c ├── td_ta_event_getmsg.c ├── td_ta_get_nthreads.c ├── td_ta_get_ph.c ├── td_ta_get_stats.c ├── td_ta_map_id2thr.c ├── td_ta_map_lwp2thr.c ├── td_ta_new.c ├── td_ta_reset_stats.c ├── td_ta_set_event.c ├── td_ta_setconcurrency.c ├── td_ta_thr_iter.c ├── td_ta_tsd_iter.c ├── td_thr_clear_event.c ├── td_thr_dbresume.c ├── td_thr_dbsuspend.c ├── td_thr_event_enable.c ├── td_thr_event_getmsg.c ├── td_thr_get_info.c ├── td_thr_getfpregs.c ├── td_thr_getgregs.c ├── td_thr_getxregs.c ├── td_thr_getxregsize.c ├── td_thr_set_event.c ├── td_thr_setfpregs.c ├── td_thr_setgregs.c ├── td_thr_setprio.c ├── td_thr_setsigpending.c ├── td_thr_setxregs.c ├── td_thr_sigsetmask.c ├── td_thr_tls_get_addr.c ├── td_thr_tlsbase.c ├── td_thr_tsd.c ├── td_thr_validate.c ├── thread_db.h └── thread_dbP.h ├── nscd ├── Depend ├── Makefile ├── aicache.c ├── cache.c ├── connections.c ├── dbg_log.c ├── dbg_log.h ├── gai.c ├── getgrgid_r.c ├── getgrnam_r.c ├── gethstbyad_r.c ├── gethstbynm3_r.c ├── getpwnam_r.c ├── getpwuid_r.c ├── getsrvbynm_r.c ├── getsrvbypt_r.c ├── grpcache.c ├── hstcache.c ├── initgrcache.c ├── mem.c ├── netgroupcache.c ├── nis_hash.c ├── nscd-client.h ├── nscd.c ├── nscd.conf ├── nscd.h ├── nscd.init ├── nscd_conf.c ├── nscd_getai.c ├── nscd_getgr_r.c ├── nscd_gethst_r.c ├── nscd_getpw_r.c ├── nscd_getserv_r.c ├── nscd_helper.c ├── nscd_initgroups.c ├── nscd_netgroup.c ├── nscd_proto.h ├── nscd_setup_thread.c ├── nscd_stat.c ├── pwdcache.c ├── res_hconf.c ├── selinux.c ├── selinux.h └── servicescache.c ├── nss ├── Depend ├── Makefile ├── Versions ├── XXX-lookup.c ├── alias-lookup.c ├── bug-erange.c ├── databases.def ├── db-Makefile ├── digits_dots.c ├── ethers-lookup.c ├── fixed-nsswitch.conf ├── fixed-nsswitch.functions ├── function.def ├── gen-fixed-nsswitch.c ├── getXXbyYY.c ├── getXXbyYY_r.c ├── getXXent.c ├── getXXent_r.c ├── getent.c ├── getnssent.c ├── getnssent_r.c ├── grp-lookup.c ├── hosts-lookup.c ├── key-lookup.c ├── makedb.c ├── netgrp-lookup.c ├── network-lookup.c ├── nss.h ├── nss_db │ ├── db-XXX.c │ ├── db-init.c │ ├── db-initgroups.c │ ├── db-netgrp.c │ ├── db-open.c │ └── nss_db.h ├── nss_files │ ├── files-XXX.c │ ├── files-alias.c │ ├── files-ethers.c │ ├── files-grp.c │ ├── files-have_o_cloexec.c │ ├── files-hosts.c │ ├── files-init.c │ ├── files-initgroups.c │ ├── files-key.c │ ├── files-netgrp.c │ ├── files-network.c │ ├── files-parse.c │ ├── files-proto.c │ ├── files-pwd.c │ ├── files-rpc.c │ ├── files-service.c │ ├── files-sgrp.c │ └── files-spwd.c ├── nss_test1.c ├── nsswitch.c ├── nsswitch.conf ├── nsswitch.h ├── proto-lookup.c ├── pwd-lookup.c ├── rpc-lookup.c ├── service-lookup.c ├── sgrp-lookup.c ├── spwd-lookup.c ├── test-digits-dots.c ├── test-netdb.c ├── tst-nss-static.c └── tst-nss-test1.c ├── o-iterator.mk ├── option-groups.def ├── option-groups.defaults ├── option-groups.mak ├── po ├── .gitignore ├── Makefile ├── be.po ├── bg.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_GB.po ├── eo.po ├── es.po ├── fi.po ├── fr.po ├── gl.po ├── header.pot ├── hr.po ├── hu.po ├── ia.po ├── id.po ├── it.po ├── ja.po ├── ko.po ├── libc.pot ├── lt.po ├── nb.po ├── nl.po ├── pl.po ├── pt_BR.po ├── ru.po ├── rw.po ├── sk.po ├── sv.po ├── tr.po ├── vi.po ├── zh_CN.po └── zh_TW.po ├── ports ├── ChangeLog ├── ChangeLog.aarch64 ├── ChangeLog.aix ├── ChangeLog.alpha ├── ChangeLog.am33 ├── ChangeLog.arm ├── ChangeLog.cris ├── ChangeLog.eglibc ├── ChangeLog.hppa ├── ChangeLog.ia64 ├── ChangeLog.linux-generic ├── ChangeLog.m68k ├── ChangeLog.microblaze ├── ChangeLog.mips ├── ChangeLog.powerpc ├── ChangeLog.tile ├── README └── sysdeps │ ├── aarch64 │ ├── Implies │ ├── Makefile │ ├── __longjmp.S │ ├── backtrace.c │ ├── bits │ │ ├── atomic.h │ │ ├── endian.h │ │ ├── fenv.h │ │ ├── link.h │ │ ├── linkmap.h │ │ ├── mathdef.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── bzero.S │ ├── crti.S │ ├── crtn.S │ ├── dl-irel.h │ ├── dl-link.sym │ ├── dl-machine.h │ ├── dl-sysdep.h │ ├── dl-tls.h │ ├── dl-tlsdesc.S │ ├── dl-tlsdesc.h │ ├── dl-trampoline.S │ ├── fpu │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fpu_control.h │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── get-rounding-mode.h │ │ ├── s_ceil.c │ │ ├── s_ceilf.c │ │ ├── s_floor.c │ │ ├── s_floorf.c │ │ ├── s_fma.c │ │ ├── s_fmaf.c │ │ ├── s_fmax.c │ │ ├── s_fmaxf.c │ │ ├── s_fmin.c │ │ ├── s_fminf.c │ │ ├── s_frint.c │ │ ├── s_frintf.c │ │ ├── s_llrint.c │ │ ├── s_llrintf.c │ │ ├── s_llround.c │ │ ├── s_llroundf.c │ │ ├── s_lrint.c │ │ ├── s_lrintf.c │ │ ├── s_lround.c │ │ ├── s_lroundf.c │ │ ├── s_nearbyint.c │ │ ├── s_nearbyintf.c │ │ ├── s_rint.c │ │ ├── s_rintf.c │ │ ├── s_round.c │ │ ├── s_roundf.c │ │ ├── s_trunc.c │ │ └── s_truncf.c │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── libm-test-ulps │ ├── memcmp.S │ ├── memcpy.S │ ├── memmove.S │ ├── memset.S │ ├── memusage.h │ ├── nptl │ │ ├── Makefile │ │ ├── pthread_spin_lock.c │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── preconfigure │ ├── setjmp.S │ ├── shlib-versions │ ├── soft-fp │ │ ├── Makefile │ │ ├── e_sqrtl.c │ │ └── sfp-machine.h │ ├── sotruss-lib.c │ ├── stackinfo.h │ ├── start.S │ ├── strcmp.S │ ├── strlen.S │ ├── strncmp.S │ ├── strnlen.S │ ├── sysdep.h │ ├── tls-macros.h │ ├── tlsdesc.c │ ├── tlsdesc.sym │ └── tst-audit.h │ ├── alpha │ ├── Implies │ ├── Makefile │ ├── Subdirs │ ├── Versions │ ├── __longjmp.S │ ├── _mcount.S │ ├── add_n.S │ ├── addmul_1.S │ ├── alphaev5 │ │ ├── add_n.S │ │ ├── lshift.S │ │ ├── rshift.S │ │ └── sub_n.S │ ├── alphaev6 │ │ ├── Implies │ │ ├── addmul_1.S │ │ ├── fpu │ │ │ ├── e_sqrt.S │ │ │ └── e_sqrtf.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── stxcpy.S │ │ └── stxncpy.S │ ├── alphaev67 │ │ ├── Implies │ │ ├── ffs.S │ │ ├── ffsll.S │ │ ├── fpu │ │ │ └── Implies │ │ ├── rawmemchr.S │ │ ├── stpcpy.S │ │ ├── stpncpy.S │ │ ├── strcat.S │ │ ├── strchr.S │ │ ├── strlen.S │ │ ├── strncat.S │ │ └── strrchr.S │ ├── backtrace.c │ ├── bb_init_func.S │ ├── bits │ │ ├── atomic.h │ │ ├── endian.h │ │ ├── link.h │ │ ├── mathdef.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── bzero.S │ ├── configure │ ├── configure.in │ ├── crti.S │ ├── crtn.S │ ├── div.S │ ├── div_libc.h │ ├── divl.S │ ├── divlu.S │ ├── divq.S │ ├── divqu.S │ ├── dl-dtprocnum.h │ ├── dl-machine.h │ ├── dl-procinfo.c │ ├── dl-procinfo.h │ ├── dl-sysdep.h │ ├── dl-tls.h │ ├── dl-trampoline.S │ ├── ffs.S │ ├── ffsll.S │ ├── fpu │ │ ├── Versions │ │ ├── bits │ │ │ ├── fenv.h │ │ │ └── mathinline.h │ │ ├── cabsf.c │ │ ├── cargf.c │ │ ├── cfloat-compat.h │ │ ├── cimagf.c │ │ ├── conjf.c │ │ ├── crealf.c │ │ ├── e_sqrt.c │ │ ├── e_sqrtf.c │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fenv_libc.h │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fpu_control.h │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── get-rounding-mode.h │ │ ├── libm-test-ulps │ │ ├── math_private.h │ │ ├── s_cacosf.c │ │ ├── s_cacoshf.c │ │ ├── s_casinf.c │ │ ├── s_casinhf.c │ │ ├── s_catanf.c │ │ ├── s_catanhf.c │ │ ├── s_ccosf.c │ │ ├── s_ccoshf.c │ │ ├── s_ceil.c │ │ ├── s_ceilf.c │ │ ├── s_cexpf.c │ │ ├── s_clog10f.c │ │ ├── s_clogf.c │ │ ├── s_copysign.c │ │ ├── s_copysignf.c │ │ ├── s_cpowf.c │ │ ├── s_cprojf.c │ │ ├── s_csinf.c │ │ ├── s_csinhf.c │ │ ├── s_csqrtf.c │ │ ├── s_ctanf.c │ │ ├── s_ctanhf.c │ │ ├── s_fabs.c │ │ ├── s_fabsf.c │ │ ├── s_floor.c │ │ ├── s_floorf.c │ │ ├── s_fmax.S │ │ ├── s_fmaxf.S │ │ ├── s_fmin.S │ │ ├── s_fminf.S │ │ ├── s_isnan.c │ │ ├── s_isnanf.c │ │ ├── s_llrint.c │ │ ├── s_llrintf.c │ │ ├── s_llround.c │ │ ├── s_llroundf.c │ │ ├── s_lrint.c │ │ ├── s_lrintf.c │ │ ├── s_lround.c │ │ ├── s_lroundf.c │ │ ├── s_nearbyint.c │ │ ├── s_nearbyintf.c │ │ ├── s_rint.c │ │ ├── s_rintf.c │ │ ├── s_round.c │ │ ├── s_roundf.c │ │ ├── s_trunc.c │ │ └── s_truncf.c │ ├── gccframe.h │ ├── hp-timing.h │ ├── htonl.S │ ├── htons.S │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldiv.S │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── lldiv.S │ ├── lshift.S │ ├── machine-gmon.h │ ├── memchr.c │ ├── memset.S │ ├── memusage.h │ ├── mul_1.S │ ├── nptl │ │ ├── Makefile │ │ ├── pthread_spin_lock.S │ │ ├── pthread_spin_trylock.S │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── nscd-types.h │ ├── preconfigure │ ├── rawmemchr.S │ ├── reml.S │ ├── remlu.S │ ├── remq.S │ ├── remqu.S │ ├── rshift.S │ ├── setjmp.S │ ├── shlib-versions │ ├── soft-fp │ │ ├── Makefile │ │ ├── Versions │ │ ├── e_sqrtl.c │ │ ├── local-soft-fp.h │ │ ├── ots_add.c │ │ ├── ots_cmp.c │ │ ├── ots_cmpe.c │ │ ├── ots_cvtqux.c │ │ ├── ots_cvtqx.c │ │ ├── ots_cvttx.c │ │ ├── ots_cvtxq.c │ │ ├── ots_cvtxt.c │ │ ├── ots_div.c │ │ ├── ots_mul.c │ │ ├── ots_nintxq.c │ │ ├── ots_sub.c │ │ └── sfp-machine.h │ ├── sotruss-lib.c │ ├── stackinfo.h │ ├── start.S │ ├── stpcpy.S │ ├── stpncpy.S │ ├── strcat.S │ ├── strchr.S │ ├── strcmp.S │ ├── strcpy.S │ ├── strlen.S │ ├── strncat.S │ ├── strncmp.S │ ├── strncpy.S │ ├── strrchr.S │ ├── stxcpy.S │ ├── stxncpy.S │ ├── sub_n.S │ ├── submul_1.S │ ├── tininess.h │ ├── tls-macros.h │ ├── tst-audit.h │ └── udiv_qrnnd.S │ ├── am33 │ ├── Implies │ ├── __longjmp.S │ ├── atomicity.h │ ├── bits │ │ ├── endian.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── dl-machine.h │ ├── elf │ │ └── start.S │ ├── fpu │ │ ├── bits │ │ │ └── fenv.h │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fenv_libc.h │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fpu_control.h │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ └── ftestexcept.c │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── linuxthreads │ │ ├── pspinlock.c │ │ └── pt-machine.h │ ├── memusage.h │ ├── preconfigure │ ├── setjmp.S │ ├── shlib-versions │ ├── stackinfo.h │ ├── sys │ │ └── ucontext.h │ ├── sysdep.h │ └── tininess.h │ ├── arm │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── __longjmp.S │ ├── abi-note.S │ ├── add_n.S │ ├── addmul_1.S │ ├── aeabi_assert.c │ ├── aeabi_atexit.c │ ├── aeabi_errno_addr.c │ ├── aeabi_lcsts.c │ ├── aeabi_localeconv.c │ ├── aeabi_math.c │ ├── aeabi_mb_cur_max.c │ ├── aeabi_memclr.c │ ├── aeabi_memcpy.c │ ├── aeabi_memmove.c │ ├── aeabi_memset.c │ ├── aeabi_sighandlers.S │ ├── aeabi_unwind_cpp_pr1.c │ ├── arm-features.h │ ├── arm-mcount.S │ ├── armv6 │ │ ├── rawmemchr.S │ │ ├── stpcpy.S │ │ ├── strchr.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ └── strrchr.S │ ├── armv6t2 │ │ ├── Implies │ │ ├── ffs.S │ │ ├── ffsll.S │ │ └── memchr.S │ ├── armv7 │ │ ├── Implies │ │ ├── configure │ │ ├── configure.in │ │ └── multiarch │ │ │ ├── Makefile │ │ │ ├── aeabi_memcpy.c │ │ │ ├── ifunc-impl-list.c │ │ │ ├── memcpy.S │ │ │ ├── memcpy_impl.S │ │ │ ├── memcpy_neon.S │ │ │ └── memcpy_vfp.S │ ├── backtrace.c │ ├── bits │ │ ├── atomic.h │ │ ├── endian.h │ │ ├── fenv.h │ │ ├── link.h │ │ ├── linkmap.h │ │ ├── mathdef.h │ │ ├── predefs.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.in │ ├── crti.S │ ├── crtn.S │ ├── dl-irel.h │ ├── dl-lookupcfg.h │ ├── dl-machine.h │ ├── dl-sysdep.h │ ├── dl-tls.h │ ├── dl-tlsdesc.S │ ├── dl-tlsdesc.h │ ├── dl-trampoline.S │ ├── fclrexcpt.c │ ├── fedisblxcpt.c │ ├── feenablxcpt.c │ ├── fegetenv.c │ ├── fegetexcept.c │ ├── fegetround.c │ ├── feholdexcpt.c │ ├── fesetenv.c │ ├── fesetround.c │ ├── feupdateenv.c │ ├── fgetexcptflg.c │ ├── find_exidx.c │ ├── fpu_control.h │ ├── fraiseexcpt.c │ ├── frame.h │ ├── framestate.c │ ├── fsetexcptflg.c │ ├── ftestexcept.c │ ├── gccframe.h │ ├── get-rounding-mode.h │ ├── gmp-mparam.h │ ├── include │ │ └── bits │ │ │ └── setjmp.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── libm-test-ulps │ ├── machine-gmon.h │ ├── math-tests.h │ ├── memcpy.S │ ├── memmove.S │ ├── memset.S │ ├── memusage.h │ ├── nptl │ │ ├── Makefile │ │ ├── pthread_spin_lock.c │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── preconfigure │ ├── preconfigure.in │ ├── rtld-global-offsets.sym │ ├── s_fma.c │ ├── s_fmaf.c │ ├── setfpucw.c │ ├── setjmp.S │ ├── shlib-versions │ ├── soft-fp │ │ └── sfp-machine.h │ ├── sotruss-lib.c │ ├── stackinfo.h │ ├── start.S │ ├── static-stubs.c │ ├── strlen.S │ ├── sub_n.S │ ├── submul_1.S │ ├── sys │ │ └── ucontext.h │ ├── sysdep.h │ ├── test-fpucw.c │ ├── tls-macros.h │ ├── tlsdesc.c │ ├── tlsdesc.sym │ ├── tst-audit.h │ ├── unwind-dw2-fde-glibc.c │ └── unwind-pe.c │ ├── hppa │ ├── Makefile │ ├── Versions │ ├── __longjmp.c │ ├── abort-instr.h │ ├── add_n.S │ ├── bits │ │ ├── endian.h │ │ ├── link.h │ │ ├── linkmap.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.in │ ├── crti.S │ ├── crtn.S │ ├── dl-fptr.c │ ├── dl-fptr.h │ ├── dl-irel.h │ ├── dl-lookupcfg.h │ ├── dl-machine.h │ ├── dl-symaddr.c │ ├── dl-tls.h │ ├── dl-trampoline.S │ ├── entry.h │ ├── fpu │ │ ├── bits │ │ │ ├── fenv.h │ │ │ └── mathdef.h │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fpu_control.h │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ └── libm-test-ulps │ ├── frame.h │ ├── gccframe.h │ ├── get-rounding-mode.h │ ├── hppa1.1 │ │ ├── Implies │ │ ├── addmul_1.S │ │ ├── mul_1.S │ │ ├── s_signbit.c │ │ ├── submul_1.S │ │ └── udiv_qrnnd.S │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── libgcc-compat.c │ ├── lshift.S │ ├── machine-gmon.h │ ├── math_private.h │ ├── memusage.h │ ├── mp_clz_tab.c │ ├── nptl │ │ ├── Makefile │ │ ├── jmpbuf-unwind.h │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_lock.c │ │ ├── pthread_spin_unlock.c │ │ ├── pthreaddef.h │ │ ├── shlib-versions │ │ ├── tcb-offsets.sym │ │ ├── tls.h │ │ └── tst-oddstacklimit.c │ ├── preconfigure │ ├── rshift.S │ ├── setjmp.S │ ├── shlib-versions │ ├── stackinfo.h │ ├── start.S │ ├── sub_n.S │ ├── sysdep.h │ ├── tininess.h │ ├── tls-macros.h │ ├── tst-audit.h │ └── udiv_qrnnd.S │ ├── ia64 │ ├── Implies │ ├── Makeconfig │ ├── Makefile │ ├── Versions │ ├── _mcount.S │ ├── abort-instr.h │ ├── backtrace.c │ ├── bcopy.S │ ├── bits │ │ ├── atomic.h │ │ ├── byteswap-16.h │ │ ├── byteswap.h │ │ ├── fenv.h │ │ ├── huge_vall.h │ │ ├── link.h │ │ ├── linkmap.h │ │ ├── mathdef.h │ │ └── xtitypes.h │ ├── bzero.S │ ├── configure │ ├── configure.in │ ├── crti.S │ ├── crtn.S │ ├── dl-dtprocnum.h │ ├── dl-fptr.h │ ├── dl-lookupcfg.h │ ├── dl-machine.h │ ├── dl-sysdep.h │ ├── dl-tls.h │ ├── dl-trampoline.S │ ├── entry.h │ ├── fpu │ │ ├── Makefile │ │ ├── README │ │ ├── Versions │ │ ├── bits │ │ │ ├── math-finite.h │ │ │ └── mathinline.h │ │ ├── branred.c │ │ ├── doasin.c │ │ ├── dosincos.c │ │ ├── e_acos.S │ │ ├── e_acosf.S │ │ ├── e_acosh.S │ │ ├── e_acoshf.S │ │ ├── e_acoshl.S │ │ ├── e_acosl.S │ │ ├── e_asin.S │ │ ├── e_asinf.S │ │ ├── e_asinl.S │ │ ├── e_atan2.S │ │ ├── e_atan2f.S │ │ ├── e_atan2l.c │ │ ├── e_atanh.S │ │ ├── e_atanhf.S │ │ ├── e_atanhl.S │ │ ├── e_cosh.S │ │ ├── e_coshf.S │ │ ├── e_coshl.S │ │ ├── e_exp.S │ │ ├── e_exp10.S │ │ ├── e_exp10f.S │ │ ├── e_exp10l.S │ │ ├── e_exp2.S │ │ ├── e_exp2f.S │ │ ├── e_exp2l.S │ │ ├── e_expf.S │ │ ├── e_expl.c │ │ ├── e_fmod.S │ │ ├── e_fmodf.S │ │ ├── e_fmodl.S │ │ ├── e_gamma_r.c │ │ ├── e_gammaf_r.c │ │ ├── e_gammal_r.c │ │ ├── e_hypot.S │ │ ├── e_hypotf.S │ │ ├── e_hypotl.S │ │ ├── e_ilogbl.S │ │ ├── e_lgamma_r.c │ │ ├── e_lgammaf_r.c │ │ ├── e_lgammal_r.c │ │ ├── e_log.S │ │ ├── e_log10.c │ │ ├── e_log10f.c │ │ ├── e_log10l.c │ │ ├── e_log2.S │ │ ├── e_log2f.S │ │ ├── e_log2l.S │ │ ├── e_logf.S │ │ ├── e_logl.S │ │ ├── e_pow.S │ │ ├── e_powf.S │ │ ├── e_powl.S │ │ ├── e_rem_pio2.c │ │ ├── e_rem_pio2f.c │ │ ├── e_rem_pio2l.c │ │ ├── e_remainder.S │ │ ├── e_remainderf.S │ │ ├── e_remainderl.S │ │ ├── e_scalb.S │ │ ├── e_scalbf.S │ │ ├── e_scalbl.S │ │ ├── e_sinh.S │ │ ├── e_sinhf.S │ │ ├── e_sinhl.S │ │ ├── e_sqrt.S │ │ ├── e_sqrtf.S │ │ ├── e_sqrtl.S │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── gen_import_file_list │ │ ├── get-rounding-mode.h │ │ ├── halfulp.c │ │ ├── import_check │ │ ├── import_diffs │ │ ├── import_file.awk │ │ ├── import_intel_libm │ │ ├── k_rem_pio2.c │ │ ├── k_rem_pio2f.c │ │ ├── k_rem_pio2l.c │ │ ├── libc_libm_error.c │ │ ├── libm-symbols.h │ │ ├── libm-test-ulps │ │ ├── libm_cpu_defs.h │ │ ├── libm_error.c │ │ ├── libm_error_codes.h │ │ ├── libm_frexp.S │ │ ├── libm_frexp4.S │ │ ├── libm_frexp4f.S │ │ ├── libm_frexp4l.S │ │ ├── libm_frexpf.S │ │ ├── libm_frexpl.S │ │ ├── libm_lgamma.S │ │ ├── libm_lgammaf.S │ │ ├── libm_lgammal.S │ │ ├── libm_reduce.S │ │ ├── libm_scalblnf.S │ │ ├── libm_sincos.S │ │ ├── libm_sincos_large.S │ │ ├── libm_sincosf.S │ │ ├── libm_sincosl.S │ │ ├── libm_support.h │ │ ├── libm_tan.S │ │ ├── math_ldbl.h │ │ ├── mpa.c │ │ ├── mpatan.c │ │ ├── mpatan2.c │ │ ├── mpexp.c │ │ ├── mplog.c │ │ ├── mpsqrt.c │ │ ├── mptan.c │ │ ├── printf_fphex.c │ │ ├── s_asinh.S │ │ ├── s_asinhf.S │ │ ├── s_asinhl.S │ │ ├── s_atan.S │ │ ├── s_atanf.S │ │ ├── s_atanl.S │ │ ├── s_cbrt.S │ │ ├── s_cbrtf.S │ │ ├── s_cbrtl.S │ │ ├── s_ceil.S │ │ ├── s_ceilf.S │ │ ├── s_ceill.S │ │ ├── s_copysign.S │ │ ├── s_copysignf.S │ │ ├── s_copysignl.S │ │ ├── s_cos.S │ │ ├── s_cosf.S │ │ ├── s_cosl.S │ │ ├── s_erf.S │ │ ├── s_erfc.S │ │ ├── s_erfcf.S │ │ ├── s_erfcl.S │ │ ├── s_erff.S │ │ ├── s_erfl.S │ │ ├── s_expm1.S │ │ ├── s_expm1f.S │ │ ├── s_expm1l.S │ │ ├── s_fabs.S │ │ ├── s_fabsf.S │ │ ├── s_fabsl.S │ │ ├── s_fdim.S │ │ ├── s_fdimf.S │ │ ├── s_fdiml.S │ │ ├── s_finite.S │ │ ├── s_finitef.S │ │ ├── s_finitel.S │ │ ├── s_floor.S │ │ ├── s_floorf.S │ │ ├── s_floorl.S │ │ ├── s_fma.S │ │ ├── s_fmaf.S │ │ ├── s_fmal.S │ │ ├── s_fmax.S │ │ ├── s_fmaxf.S │ │ ├── s_fmaxl.S │ │ ├── s_fpclassify.S │ │ ├── s_fpclassifyf.S │ │ ├── s_fpclassifyl.S │ │ ├── s_frexp.c │ │ ├── s_frexpf.c │ │ ├── s_frexpl.c │ │ ├── s_ilogb.S │ │ ├── s_ilogbf.S │ │ ├── s_isinf.S │ │ ├── s_isinff.S │ │ ├── s_isinfl.S │ │ ├── s_isnan.S │ │ ├── s_isnanf.S │ │ ├── s_isnanl.S │ │ ├── s_ldexp.c │ │ ├── s_ldexpf.c │ │ ├── s_ldexpl.c │ │ ├── s_libm_ldexp.S │ │ ├── s_libm_ldexpf.S │ │ ├── s_libm_ldexpl.S │ │ ├── s_libm_scalbn.S │ │ ├── s_libm_scalbnf.S │ │ ├── s_libm_scalbnl.S │ │ ├── s_log1p.S │ │ ├── s_log1pf.S │ │ ├── s_log1pl.S │ │ ├── s_logb.S │ │ ├── s_logbf.S │ │ ├── s_logbl.S │ │ ├── s_matherrf.c │ │ ├── s_matherrl.c │ │ ├── s_modf.S │ │ ├── s_modff.S │ │ ├── s_modfl.S │ │ ├── s_nearbyint.S │ │ ├── s_nearbyintf.S │ │ ├── s_nearbyintl.S │ │ ├── s_nextafter.S │ │ ├── s_nextafterf.S │ │ ├── s_nextafterl.S │ │ ├── s_nexttoward.S │ │ ├── s_nexttowardf.S │ │ ├── s_nexttowardl.S │ │ ├── s_rint.S │ │ ├── s_rintf.S │ │ ├── s_rintl.S │ │ ├── s_round.S │ │ ├── s_roundf.S │ │ ├── s_roundl.S │ │ ├── s_scalblnf.c │ │ ├── s_scalbn.c │ │ ├── s_scalbnf.c │ │ ├── s_scalbnl.c │ │ ├── s_signbit.S │ │ ├── s_signbitf.S │ │ ├── s_signbitl.S │ │ ├── s_significand.S │ │ ├── s_significandf.S │ │ ├── s_significandl.S │ │ ├── s_sin.c │ │ ├── s_sincos.c │ │ ├── s_sincosf.c │ │ ├── s_sincosl.c │ │ ├── s_sinf.c │ │ ├── s_sinl.c │ │ ├── s_tan.S │ │ ├── s_tanf.S │ │ ├── s_tanh.S │ │ ├── s_tanhf.S │ │ ├── s_tanhl.S │ │ ├── s_tanl.S │ │ ├── s_trunc.S │ │ ├── s_truncf.S │ │ ├── s_truncl.S │ │ ├── sincos32.c │ │ ├── slowexp.c │ │ ├── slowpow.c │ │ ├── t_exp.c │ │ ├── w_acos.c │ │ ├── w_acosf.c │ │ ├── w_acosh.c │ │ ├── w_acoshf.c │ │ ├── w_acoshl.c │ │ ├── w_acosl.c │ │ ├── w_asin.c │ │ ├── w_asinf.c │ │ ├── w_asinl.c │ │ ├── w_atan2.c │ │ ├── w_atan2f.c │ │ ├── w_atan2l.c │ │ ├── w_atanh.c │ │ ├── w_atanhf.c │ │ ├── w_atanhl.c │ │ ├── w_cosh.c │ │ ├── w_coshf.c │ │ ├── w_coshl.c │ │ ├── w_exp.c │ │ ├── w_exp10.c │ │ ├── w_exp10f.c │ │ ├── w_exp10l.c │ │ ├── w_exp2.c │ │ ├── w_exp2f.c │ │ ├── w_exp2l.c │ │ ├── w_expf.c │ │ ├── w_expl.c │ │ ├── w_fmod.c │ │ ├── w_fmodf.c │ │ ├── w_fmodl.c │ │ ├── w_hypot.c │ │ ├── w_hypotf.c │ │ ├── w_hypotl.c │ │ ├── w_lgamma.c │ │ ├── w_lgamma_r.c │ │ ├── w_lgammaf.c │ │ ├── w_lgammaf_r.c │ │ ├── w_lgammal.c │ │ ├── w_lgammal_r.c │ │ ├── w_log.c │ │ ├── w_log10.c │ │ ├── w_log10f.c │ │ ├── w_log10l.c │ │ ├── w_log2.c │ │ ├── w_log2f.c │ │ ├── w_log2l.c │ │ ├── w_logf.c │ │ ├── w_logl.c │ │ ├── w_pow.c │ │ ├── w_powf.c │ │ ├── w_powl.c │ │ ├── w_remainder.c │ │ ├── w_remainderf.c │ │ ├── w_remainderl.c │ │ ├── w_scalb.c │ │ ├── w_scalbf.c │ │ ├── w_scalbl.c │ │ ├── w_sinh.c │ │ ├── w_sinhf.c │ │ ├── w_sinhl.c │ │ ├── w_sqrt.c │ │ ├── w_sqrtf.c │ │ ├── w_sqrtl.c │ │ ├── w_tgamma.S │ │ ├── w_tgammaf.S │ │ └── w_tgammal.S │ ├── gccframe.h │ ├── hp-timing.c │ ├── hp-timing.h │ ├── htonl.S │ ├── htons.S │ ├── ia64libgcc.S │ ├── ieee754.h │ ├── jmpbuf-unwind.h │ ├── ldbl2mpn.c │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── machine-gmon.h │ ├── memccpy.S │ ├── memchr.S │ ├── memcmp.S │ ├── memcpy.S │ ├── memmove.S │ ├── memset.S │ ├── memusage.h │ ├── nptl │ │ ├── Makefile │ │ ├── pthread_spin_lock.c │ │ ├── pthread_spin_trylock.c │ │ ├── pthread_spin_unlock.c │ │ ├── pthreaddef.h │ │ ├── shlib-versions │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── preconfigure │ ├── sched_cpucount.c │ ├── shlib-versions │ ├── softpipe.h │ ├── stackguard-macros.h │ ├── stackinfo.h │ ├── start.S │ ├── strcat.c │ ├── strchr.S │ ├── strcmp.S │ ├── strcpy.S │ ├── strlen.S │ ├── strncmp.S │ ├── strncpy.S │ ├── sysdep.h │ ├── tininess.h │ ├── tls-macros.h │ └── tst-audit.h │ ├── m68k │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── __longjmp.c │ ├── abort-instr.h │ ├── asm-syntax.h │ ├── backtrace.c │ ├── bits │ │ ├── byteswap.h │ │ ├── endian.h │ │ ├── link.h │ │ └── setjmp.h │ ├── bsd-_setjmp.c │ ├── bsd-setjmp.c │ ├── coldfire │ │ ├── bits │ │ │ └── atomic.h │ │ ├── fpu │ │ │ ├── bits │ │ │ │ └── mathinline.h │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── fraiseexcpt.c │ │ │ ├── libm-test-ulps │ │ │ ├── s_fabs.c │ │ │ ├── s_fabsf.c │ │ │ ├── s_lrint.c │ │ │ ├── s_lrintf.c │ │ │ ├── s_rint.c │ │ │ └── s_rintf.c │ │ ├── shlib-versions │ │ └── sysdep.h │ ├── crti.S │ ├── crtn.S │ ├── dl-machine.h │ ├── dl-tls.h │ ├── dl-trampoline.S │ ├── ffs.c │ ├── fpu │ │ ├── bits │ │ │ └── fenv.h │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fsetexcptflg.c │ │ └── ftestexcept.c │ ├── fpu_control.h │ ├── gccframe.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── m680x0 │ │ ├── Implies │ │ ├── Makefile │ │ ├── add_n.S │ │ ├── bits │ │ │ ├── huge_vall.h │ │ │ └── mathdef.h │ │ ├── fpu │ │ │ ├── bits │ │ │ │ └── mathinline.h │ │ │ ├── branred.c │ │ │ ├── doasin.c │ │ │ ├── dosincos.c │ │ │ ├── e_acos.c │ │ │ ├── e_acosf.c │ │ │ ├── e_acosl.c │ │ │ ├── e_asin.c │ │ │ ├── e_asinf.c │ │ │ ├── e_asinl.c │ │ │ ├── e_atan2.c │ │ │ ├── e_atan2f.c │ │ │ ├── e_atan2l.c │ │ │ ├── e_atanh.c │ │ │ ├── e_atanhf.c │ │ │ ├── e_atanhl.c │ │ │ ├── e_cosh.c │ │ │ ├── e_coshf.c │ │ │ ├── e_coshl.c │ │ │ ├── e_exp.c │ │ │ ├── e_exp10.c │ │ │ ├── e_exp10f.c │ │ │ ├── e_exp10l.c │ │ │ ├── e_exp2.c │ │ │ ├── e_exp2f.c │ │ │ ├── e_exp2l.c │ │ │ ├── e_expf.c │ │ │ ├── e_expl.c │ │ │ ├── e_fmod.c │ │ │ ├── e_fmodf.c │ │ │ ├── e_fmodl.c │ │ │ ├── e_ilogb.c │ │ │ ├── e_ilogbf.c │ │ │ ├── e_ilogbl.c │ │ │ ├── e_log.c │ │ │ ├── e_log10.c │ │ │ ├── e_log10f.c │ │ │ ├── e_log10l.c │ │ │ ├── e_log2.c │ │ │ ├── e_log2f.c │ │ │ ├── e_log2l.c │ │ │ ├── e_logf.c │ │ │ ├── e_logl.c │ │ │ ├── e_pow.c │ │ │ ├── e_powf.c │ │ │ ├── e_powl.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_rem_pio2f.c │ │ │ ├── e_rem_pio2l.c │ │ │ ├── e_remainder.c │ │ │ ├── e_remainderf.c │ │ │ ├── e_remainderl.c │ │ │ ├── e_scalb.c │ │ │ ├── e_scalbf.c │ │ │ ├── e_scalbl.c │ │ │ ├── e_sinh.c │ │ │ ├── e_sinhf.c │ │ │ ├── e_sinhl.c │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── e_sqrtl.c │ │ │ ├── fraiseexcpt.c │ │ │ ├── halfulp.c │ │ │ ├── k_cosl.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_rem_pio2f.c │ │ │ ├── k_rem_pio2l.c │ │ │ ├── k_sinl.c │ │ │ ├── k_tanf.c │ │ │ ├── k_tanl.c │ │ │ ├── libm-test-ulps │ │ │ ├── math_private.h │ │ │ ├── mathimpl.h │ │ │ ├── mpa.c │ │ │ ├── mpatan.c │ │ │ ├── mpatan2.c │ │ │ ├── mpexp.c │ │ │ ├── mplog.c │ │ │ ├── mpsqrt.c │ │ │ ├── mptan.c │ │ │ ├── s_atan.c │ │ │ ├── s_atanf.c │ │ │ ├── s_atanl.c │ │ │ ├── s_ccosh.c │ │ │ ├── s_ccoshf.c │ │ │ ├── s_ccoshl.c │ │ │ ├── s_ceil.c │ │ │ ├── s_ceilf.c │ │ │ ├── s_ceill.c │ │ │ ├── s_cexp.c │ │ │ ├── s_cexpf.c │ │ │ ├── s_cexpl.c │ │ │ ├── s_cos.c │ │ │ ├── s_cosf.c │ │ │ ├── s_cosl.c │ │ │ ├── s_csin.c │ │ │ ├── s_csinf.c │ │ │ ├── s_csinh.c │ │ │ ├── s_csinhf.c │ │ │ ├── s_csinhl.c │ │ │ ├── s_csinl.c │ │ │ ├── s_expm1.c │ │ │ ├── s_expm1f.c │ │ │ ├── s_expm1l.c │ │ │ ├── s_fabs.c │ │ │ ├── s_fabsf.c │ │ │ ├── s_fabsl.c │ │ │ ├── s_finite.c │ │ │ ├── s_finitef.c │ │ │ ├── s_finitel.c │ │ │ ├── s_floor.c │ │ │ ├── s_floorf.c │ │ │ ├── s_floorl.c │ │ │ ├── s_fpclassifyl.c │ │ │ ├── s_frexp.c │ │ │ ├── s_frexpf.c │ │ │ ├── s_frexpl.c │ │ │ ├── s_isinf.c │ │ │ ├── s_isinff.c │ │ │ ├── s_isinfl.c │ │ │ ├── s_isnan.c │ │ │ ├── s_isnanf.c │ │ │ ├── s_isnanl.c │ │ │ ├── s_llrint.c │ │ │ ├── s_llrintf.c │ │ │ ├── s_llrintl.c │ │ │ ├── s_log1p.c │ │ │ ├── s_log1pf.c │ │ │ ├── s_log1pl.c │ │ │ ├── s_logbl.c │ │ │ ├── s_lrint.c │ │ │ ├── s_lrintf.c │ │ │ ├── s_lrintl.c │ │ │ ├── s_modf.c │ │ │ ├── s_modff.c │ │ │ ├── s_modfl.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_nearbyintf.c │ │ │ ├── s_nearbyintl.c │ │ │ ├── s_nextafterl.c │ │ │ ├── s_remquo.c │ │ │ ├── s_remquof.c │ │ │ ├── s_remquol.c │ │ │ ├── s_rint.c │ │ │ ├── s_rintf.c │ │ │ ├── s_rintl.c │ │ │ ├── s_scalbln.c │ │ │ ├── s_scalblnf.c │ │ │ ├── s_scalblnl.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_scalbnf.c │ │ │ ├── s_scalbnl.c │ │ │ ├── s_significand.c │ │ │ ├── s_significandf.c │ │ │ ├── s_significandl.c │ │ │ ├── s_sin.c │ │ │ ├── s_sincos.c │ │ │ ├── s_sincosf.c │ │ │ ├── s_sincosl.c │ │ │ ├── s_sinf.c │ │ │ ├── s_sinl.c │ │ │ ├── s_tan.c │ │ │ ├── s_tanf.c │ │ │ ├── s_tanh.c │ │ │ ├── s_tanhf.c │ │ │ ├── s_tanhl.c │ │ │ ├── s_tanl.c │ │ │ ├── s_trunc.c │ │ │ ├── s_truncf.c │ │ │ ├── s_truncl.c │ │ │ ├── sincos32.c │ │ │ ├── sincostab.c │ │ │ ├── slowexp.c │ │ │ ├── slowpow.c │ │ │ └── t_exp.c │ │ ├── lshift.S │ │ ├── m68020 │ │ │ ├── Makefile │ │ │ ├── addmul_1.S │ │ │ ├── bits │ │ │ │ ├── atomic.h │ │ │ │ └── string.h │ │ │ ├── mul_1.S │ │ │ ├── submul_1.S │ │ │ └── wordcopy.S │ │ ├── printf_fphex.c │ │ ├── rshift.S │ │ ├── strtold_l.c │ │ ├── sub_n.S │ │ └── sysdep.h │ ├── memchr.S │ ├── memcopy.h │ ├── memusage.h │ ├── nptl │ │ ├── Makefile │ │ ├── pthread_spin_lock.c │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── preconfigure │ ├── rawmemchr.S │ ├── setjmp.c │ ├── shlib-versions │ ├── sotruss-lib.c │ ├── stackinfo.h │ ├── start.S │ ├── strchr.S │ ├── strchrnul.S │ ├── sys │ │ └── ucontext.h │ ├── sysdep.h │ ├── tls-macros.h │ ├── tst-audit.h │ ├── wcpcpy.c │ └── wcpcpy_chk.c │ ├── microblaze │ ├── Implies │ ├── Makefile │ ├── __longjmp.S │ ├── _mcount.S │ ├── abort-instr.h │ ├── asm-syntax.h │ ├── backtrace.c │ ├── backtrace_linux.c │ ├── bits │ │ ├── atomic.h │ │ ├── endian.h │ │ ├── fenv.h │ │ ├── link.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── crti.S │ ├── crtn.S │ ├── dl-machine.h │ ├── dl-tls.h │ ├── dl-trampoline.S │ ├── fegetround.c │ ├── fesetround.c │ ├── gccframe.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── libm-test-ulps │ ├── libm-test-ulps_new │ ├── machine-gmon.h │ ├── math_private.h │ ├── memusage.h │ ├── nptl │ │ ├── Makefile │ │ ├── pthread_spin_lock.c │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── preconfigure │ ├── setjmp.S │ ├── shlib-versions │ ├── sotruss-lib.c │ ├── stackinfo.h │ ├── start.S │ ├── sysdep.h │ ├── tls-macros.h │ └── tst-audit.h │ ├── mips │ ├── Implies │ ├── Makefile │ ├── __longjmp.c │ ├── abort-instr.h │ ├── add_n.S │ ├── addmul_1.S │ ├── backtrace.c │ ├── bits │ │ ├── atomic.h │ │ ├── dlfcn.h │ │ ├── endian.h │ │ ├── fenv.h │ │ ├── ipctypes.h │ │ ├── link.h │ │ ├── linkmap.h │ │ ├── mathdef.h │ │ ├── nan.h │ │ ├── setjmp.h │ │ └── wordsize.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.in │ ├── dl-dtprocnum.h │ ├── dl-lookup.c │ ├── dl-machine.h │ ├── dl-procinfo.c │ ├── dl-procinfo.h │ ├── dl-tls.h │ ├── dl-trampoline.c │ ├── fpregdef.h │ ├── fpu │ │ ├── e_sqrt.c │ │ ├── e_sqrtf.c │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fenv_libc.h │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ └── ftestexcept.c │ ├── fpu_control.h │ ├── gccframe.h │ ├── ieee754 │ │ ├── ieee754.h │ │ ├── s_fma.c │ │ ├── s_fmaf.c │ │ └── s_fmal.c │ ├── include │ │ └── sys │ │ │ └── asm.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── lshift.S │ ├── machine-gmon.h │ ├── math-tests.h │ ├── math_private.h │ ├── memcpy.S │ ├── memset.S │ ├── memusage.h │ ├── mips32 │ │ ├── Implies │ │ ├── Makefile │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fpu │ │ │ ├── Versions │ │ │ └── fpu_control.c │ │ ├── libm-test-ulps │ │ └── mips16 │ │ │ ├── add_n.c │ │ │ ├── addmul_1.c │ │ │ ├── fpu │ │ │ └── Makefile │ │ │ ├── lshift.c │ │ │ ├── mul_1.c │ │ │ ├── rshift.c │ │ │ ├── sub_n.c │ │ │ └── submul_1.c │ ├── mips64 │ │ ├── Implies │ │ ├── Versions │ │ ├── __longjmp.c │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── gmp-mparam.h │ │ ├── libm-test-ulps │ │ ├── lshift.S │ │ ├── memset.S │ │ ├── mul_1.S │ │ ├── n32 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── _itoa.h │ │ │ ├── crti.S │ │ │ └── crtn.S │ │ ├── n64 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── crti.S │ │ │ └── crtn.S │ │ ├── rshift.S │ │ ├── setjmp.S │ │ ├── setjmp_aux.c │ │ ├── soft-fp │ │ │ ├── Makefile │ │ │ ├── e_sqrtl.c │ │ │ └── sfp-machine.h │ │ ├── sub_n.S │ │ └── submul_1.S │ ├── mul_1.S │ ├── nptl │ │ ├── Makefile │ │ ├── nptl-sysdep.S │ │ ├── pthread_spin_lock.c │ │ ├── pthreaddef.h │ │ ├── shlib-versions │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── preconfigure │ ├── regdef.h │ ├── rshift.S │ ├── setjmp.S │ ├── setjmp_aux.c │ ├── sgidefs.h │ ├── shlib-versions │ ├── soft-fp │ │ └── sfp-machine.h │ ├── sotruss-lib.c │ ├── stackinfo.h │ ├── start.S │ ├── sub_n.S │ ├── submul_1.S │ ├── sys │ │ ├── asm.h │ │ ├── fpregdef.h │ │ ├── regdef.h │ │ ├── tas.h │ │ └── ucontext.h │ ├── tininess.h │ ├── tls-macros.h │ └── tst-audit.h │ ├── powerpc │ ├── nofpu │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── Versions │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fenv_const.c │ │ ├── fenv_libc.h │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── get-rounding-mode.h │ │ ├── libm-test-ulps │ │ ├── shlib-versions │ │ ├── sim-full.c │ │ └── soft-supp.h │ ├── powerpc32 │ │ ├── 405 │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ ├── strlen.S │ │ │ └── strncmp.S │ │ ├── 440 │ │ │ └── Implies │ │ ├── 464 │ │ │ └── Implies │ │ ├── 476 │ │ │ ├── Implies │ │ │ └── memset.S │ │ ├── Makefile │ │ └── e500 │ │ │ ├── fpu │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── __longjmp-common.S │ │ │ ├── __longjmp.S │ │ │ ├── atosfix16.c │ │ │ ├── atosfix32.c │ │ │ ├── atosfix64.c │ │ │ ├── atoufix16.c │ │ │ ├── atoufix32.c │ │ │ ├── atoufix64.c │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── fclrexcpt.c │ │ │ ├── fe_nomask.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_const.c │ │ │ ├── fenv_libc.h │ │ │ ├── fesetenv.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fprrest.c │ │ │ ├── fprsave.c │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── math_ldbl.h │ │ │ ├── math_private.h │ │ │ ├── s_ceil.c │ │ │ ├── s_ceilf.c │ │ │ ├── s_copysign.c │ │ │ ├── s_copysignf.c │ │ │ ├── s_copysignl.c │ │ │ ├── s_fabs.c │ │ │ ├── s_fabsf.S │ │ │ ├── s_fabsl.c │ │ │ ├── s_fdim.c │ │ │ ├── s_fdimf.c │ │ │ ├── s_floor.c │ │ │ ├── s_floorf.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmaf.c │ │ │ ├── s_fmax.c │ │ │ ├── s_fmaxf.c │ │ │ ├── s_fmin.c │ │ │ ├── s_fminf.c │ │ │ ├── s_isnan.c │ │ │ ├── s_isnanf.c │ │ │ ├── s_llrint.c │ │ │ ├── s_llrintf.c │ │ │ ├── s_llround.c │ │ │ ├── s_llroundf.c │ │ │ ├── s_lrint.c │ │ │ ├── s_lrintf.S │ │ │ ├── s_lround.c │ │ │ ├── s_lroundf.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_nearbyintf.c │ │ │ ├── s_rint.c │ │ │ ├── s_rintf.c │ │ │ ├── s_round.c │ │ │ ├── s_roundf.c │ │ │ ├── s_trunc.c │ │ │ ├── s_truncf.c │ │ │ ├── setjmp-common.S │ │ │ ├── setjmp.S │ │ │ ├── spe.h │ │ │ ├── strtofix.c │ │ │ ├── strtosfix16.c │ │ │ ├── strtosfix32.c │ │ │ ├── strtosfix64.c │ │ │ ├── strtoufix16.c │ │ │ ├── strtoufix32.c │ │ │ ├── strtoufix64.c │ │ │ ├── t_sqrt.c │ │ │ ├── tst-spepim.c │ │ │ ├── w_sqrt.c │ │ │ └── w_sqrtf.c │ │ │ ├── soft-fp │ │ │ ├── Makefile │ │ │ ├── Subdirs │ │ │ ├── Versions │ │ │ ├── fraiseexcept-soft.c │ │ │ └── sfp-machine.h │ │ │ └── spe-raise.c │ ├── preconfigure │ └── soft-fp │ │ └── sfp-machine.h │ ├── tile │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── __longjmp.S │ ├── __tls_get_addr.S │ ├── _mcount.S │ ├── abort-instr.h │ ├── backtrace.c │ ├── bits │ │ ├── atomic.h │ │ ├── byteswap.h │ │ ├── endian.h │ │ ├── fenv.h │ │ ├── link.h │ │ ├── mathdef.h │ │ ├── mathinline.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── bzero.S │ ├── crti.S │ ├── crtn.S │ ├── dl-lookupcfg.h │ ├── dl-machine.h │ ├── dl-runtime.c │ ├── dl-start.S │ ├── dl-tls.c │ ├── dl-tls.h │ ├── dl-trampoline.S │ ├── ffs.c │ ├── ffsll.c │ ├── gccframe.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libm-test-ulps │ ├── machine-gmon.h │ ├── math_private.h │ ├── memcopy.h │ ├── nptl │ │ ├── Makefile │ │ ├── pthread_spin_lock.c │ │ ├── pthread_spin_trylock.c │ │ ├── pthread_spin_unlock.c │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── preconfigure │ ├── s_fma.c │ ├── s_fmaf.c │ ├── setjmp.S │ ├── sfp-machine.h │ ├── shlib-versions │ ├── sotruss-lib.c │ ├── stackguard-macros.h │ ├── stackinfo.h │ ├── start.S │ ├── sysdep.h │ ├── tilegx │ │ ├── Makefile │ │ ├── bits │ │ │ ├── atomic.h │ │ │ └── wordsize.h │ │ ├── memchr.c │ │ ├── memcpy.c │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── memusage.h │ │ ├── rawmemchr.c │ │ ├── strchr.c │ │ ├── strchrnul.c │ │ ├── string-endian.h │ │ ├── strlen.c │ │ ├── strrchr.c │ │ ├── tilegx32 │ │ │ └── Implies │ │ └── tilegx64 │ │ │ └── Implies │ ├── tilepro │ │ ├── Implies │ │ ├── bits │ │ │ ├── atomic.h │ │ │ └── wordsize.h │ │ ├── memchr.c │ │ ├── memcpy.S │ │ ├── memset.c │ │ ├── memusage.h │ │ ├── rawmemchr.c │ │ ├── strchr.c │ │ ├── strchrnul.c │ │ ├── strlen.c │ │ └── strrchr.c │ ├── tls-macros.h │ ├── tst-audit.h │ └── wordcopy.c │ └── unix │ ├── alpha │ ├── Makefile │ ├── getegid.S │ ├── geteuid.S │ ├── getppid.S │ ├── pipe.S │ ├── rt-sysdep.S │ ├── sysdep.S │ └── sysdep.h │ ├── am33 │ ├── sysdep.S │ └── sysdep.h │ ├── arm │ ├── sysdep.S │ └── sysdep.h │ ├── mips │ ├── entry.h │ ├── mips32 │ │ └── sysdep.h │ ├── mips64 │ │ ├── n32 │ │ │ └── sysdep.h │ │ └── n64 │ │ │ └── sysdep.h │ ├── pipe.S │ ├── rt-sysdep.S │ ├── sysdep.S │ └── sysdep.h │ └── sysv │ └── linux │ ├── aarch64 │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── __read_tp.S │ ├── bits │ │ ├── fcntl.h │ │ ├── libc-vdso.h │ │ └── mman.h │ ├── clone.S │ ├── configure │ ├── configure.in │ ├── dl-cache.h │ ├── dl-static.c │ ├── getcontext.S │ ├── gettimeofday.c │ ├── init-first.c │ ├── ioctl.S │ ├── kernel-features.h │ ├── kernel_rt_sigframe.h │ ├── ldconfig.h │ ├── ldsodefs.h │ ├── libc-__read_tp.S │ ├── makecontext.c │ ├── mmap.c │ ├── nptl │ │ ├── bits │ │ │ ├── local_lim.h │ │ │ ├── pthreadtypes.h │ │ │ └── semaphore.h │ │ ├── c++-types.data │ │ ├── clone.S │ │ ├── createthread.c │ │ ├── fork.c │ │ ├── ld.abilist │ │ ├── libBrokenLocale.abilist │ │ ├── libanl.abilist │ │ ├── libc.abilist │ │ ├── libcrypt.abilist │ │ ├── libdl.abilist │ │ ├── libm.abilist │ │ ├── libnsl.abilist │ │ ├── libpthread.abilist │ │ ├── libresolv.abilist │ │ ├── librt.abilist │ │ ├── libthread_db.abilist │ │ ├── libutil.abilist │ │ ├── localplt.data │ │ ├── lowlevellock.h │ │ ├── pt-vfork.S │ │ ├── pthread_once.c │ │ ├── sysdep-cancel.h │ │ └── vfork.S │ ├── profil-counter.h │ ├── readelflib.c │ ├── setcontext.S │ ├── sigaction.c │ ├── swapcontext.S │ ├── sys │ │ ├── elf.h │ │ ├── procfs.h │ │ ├── ptrace.h │ │ ├── ucontext.h │ │ └── user.h │ ├── syscall.S │ ├── sysdep.c │ ├── sysdep.h │ ├── ucontext-internal.h │ ├── ucontext_i.sym │ └── vfork.S │ ├── alpha │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── ____longjmp_chk.S │ ├── a.out.h │ ├── adjtime.c │ ├── alpha │ │ ├── ptrace.h │ │ └── regdef.h │ ├── alphaev6 │ │ └── fpu │ │ │ └── Implies │ ├── alphaev67 │ │ └── fpu │ │ │ └── Implies │ ├── bits │ │ ├── a.out.h │ │ ├── dirent.h │ │ ├── elfclass.h │ │ ├── epoll.h │ │ ├── errno.h │ │ ├── eventfd.h │ │ ├── fcntl.h │ │ ├── inotify.h │ │ ├── ioctls.h │ │ ├── ipc.h │ │ ├── mman.h │ │ ├── msq.h │ │ ├── netdb.h │ │ ├── resource.h │ │ ├── sem.h │ │ ├── shm.h │ │ ├── sigaction.h │ │ ├── siginfo.h │ │ ├── signalfd.h │ │ ├── signum.h │ │ ├── sigstack.h │ │ ├── socket_type.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── termios.h │ │ ├── timerfd.h │ │ ├── typesizes.h │ │ └── wordsize.h │ ├── brk.S │ ├── clone.S │ ├── configure │ ├── configure.in │ ├── creat.c │ ├── dl-auxv.h │ ├── dl-brk.S │ ├── dl-fxstatat64.c │ ├── dl-support.c │ ├── dl-sysdep.c │ ├── fdatasync.c │ ├── fpu │ │ └── Implies │ ├── fraiseexcpt.S │ ├── fstatfs64.c │ ├── fstatvfs.c │ ├── fstatvfs64.c │ ├── fxstat.c │ ├── fxstatat.c │ ├── getclktck.c │ ├── getcontext.S │ ├── getdents.c │ ├── getdents64.c │ ├── gethostname.c │ ├── getsysstats.c │ ├── glob.c │ ├── ieee_get_fp_control.S │ ├── ieee_set_fp_control.S │ ├── internal_statvfs64.c │ ├── ioperm.c │ ├── ipc_priv.h │ ├── kernel-features.h │ ├── kernel_sigaction.h │ ├── kernel_stat.h │ ├── kernel_sysinfo.h │ ├── kernel_termios.h │ ├── lxstat.c │ ├── makecontext.S │ ├── msgctl.c │ ├── nldbl-abi.h │ ├── nptl │ │ ├── Makefile │ │ ├── Versions │ │ ├── aio_cancel.c │ │ ├── bits │ │ │ ├── local_lim.h │ │ │ ├── pthreadtypes.h │ │ │ └── semaphore.h │ │ ├── c++-types.data │ │ ├── clone.S │ │ ├── createthread.c │ │ ├── fork.c │ │ ├── ld.abilist │ │ ├── libBrokenLocale.abilist │ │ ├── libanl.abilist │ │ ├── libc.abilist │ │ ├── libcrypt.abilist │ │ ├── libdl.abilist │ │ ├── libm.abilist │ │ ├── libnsl.abilist │ │ ├── libpthread.abilist │ │ ├── libresolv.abilist │ │ ├── librt.abilist │ │ ├── libthread_db.abilist │ │ ├── libutil.abilist │ │ ├── localplt.data │ │ ├── lowlevellock.h │ │ ├── pt-vfork.S │ │ ├── pthread_once.c │ │ ├── sem_post.c │ │ ├── sysdep-cancel.h │ │ ├── timer_create.c │ │ ├── timer_delete.c │ │ ├── timer_getoverr.c │ │ ├── timer_gettime.c │ │ ├── timer_settime.c │ │ └── vfork.S │ ├── oldglob.c │ ├── pipe.S │ ├── register-dump.h │ ├── rt_sigaction.S │ ├── semctl.c │ ├── setcontext.S │ ├── setfpucw.c │ ├── shmctl.c │ ├── sigaction.c │ ├── sigcontextinfo.h │ ├── sigprocmask.c │ ├── sigsuspend.S │ ├── sizes.h │ ├── statfs64.c │ ├── statvfs.c │ ├── statvfs64.c │ ├── swapcontext.S │ ├── sys │ │ ├── acct.h │ │ ├── io.h │ │ ├── procfs.h │ │ ├── ucontext.h │ │ └── user.h │ ├── syscall.S │ ├── syscalls.list │ ├── sysconf.c │ ├── sysdep.h │ ├── ucontext-offsets.sym │ ├── wordexp.c │ ├── xstat.c │ ├── xstatconv.c │ └── xstatconv.h │ ├── am33 │ ├── Makefile │ ├── bits │ │ ├── fcntl.h │ │ └── mman.h │ ├── brk.c │ ├── chown.c │ ├── clone.S │ ├── configure │ ├── configure.in │ ├── fchown.c │ ├── fcntl.c │ ├── fxstat.c │ ├── getegid.c │ ├── geteuid.c │ ├── getgid.c │ ├── getgroups.c │ ├── getmsg.c │ ├── getresgid.c │ ├── getresuid.c │ ├── getuid.c │ ├── lchown.c │ ├── linuxthreads │ │ └── sysdep-cancel.h │ ├── lockf64.c │ ├── lxstat.c │ ├── profil-counter.h │ ├── putmsg.c │ ├── setegid.c │ ├── seteuid.c │ ├── setfsgid.c │ ├── setfsuid.c │ ├── setgid.c │ ├── setgroups.c │ ├── setregid.c │ ├── setresgid.c │ ├── setresuid.c │ ├── setreuid.c │ ├── setrlimit.c │ ├── setuid.c │ ├── socket.S │ ├── syscall.S │ ├── sysdep.S │ ├── sysdep.h │ └── xstat.c │ ├── arm │ ├── Makefile │ ├── Versions │ ├── ____longjmp_chk.S │ ├── aeabi_read_tp.S │ ├── alphasort64.c │ ├── arm-features.h │ ├── bits │ │ ├── atomic.h │ │ ├── fcntl.h │ │ ├── hwcap.h │ │ ├── mman.h │ │ └── shm.h │ ├── brk.c │ ├── clone.S │ ├── configure │ ├── configure.in │ ├── dl-cache.h │ ├── dl-machine.h │ ├── dl-procinfo.c │ ├── dl-procinfo.h │ ├── fchown.c │ ├── fcntl.c │ ├── ftruncate64.c │ ├── fxstat.c │ ├── fxstatat.c │ ├── getcontext.S │ ├── getdents64.c │ ├── getegid.c │ ├── geteuid.c │ ├── getgid.c │ ├── getgroups.c │ ├── getresgid.c │ ├── getresuid.c │ ├── getrlimit64.c │ ├── getuid.c │ ├── glob64.c │ ├── internal_accept4.S │ ├── internal_recvmmsg.S │ ├── internal_sendmmsg.S │ ├── ioperm.c │ ├── kernel-features.h │ ├── lchown.c │ ├── ldconfig.h │ ├── ldsodefs.h │ ├── libc-aeabi_read_tp.S │ ├── libc-do-syscall.S │ ├── lockf64.c │ ├── lxstat.c │ ├── makecontext.c │ ├── mmap.S │ ├── mmap64.S │ ├── msgctl.c │ ├── nptl │ │ ├── Makefile │ │ ├── Versions │ │ ├── bits │ │ │ ├── pthreadtypes.h │ │ │ └── semaphore.h │ │ ├── c++-types.data │ │ ├── clone.S │ │ ├── configure │ │ ├── configure.in │ │ ├── createthread.c │ │ ├── fork.c │ │ ├── ld.abilist │ │ ├── libBrokenLocale.abilist │ │ ├── libanl.abilist │ │ ├── libc.abilist │ │ ├── libcrypt.abilist │ │ ├── libdl.abilist │ │ ├── libm.abilist │ │ ├── libnsl.abilist │ │ ├── libpthread.abilist │ │ ├── libresolv.abilist │ │ ├── librt.abilist │ │ ├── libthread_db.abilist │ │ ├── libutil.abilist │ │ ├── localplt.data │ │ ├── lowlevellock.c │ │ ├── lowlevellock.h │ │ ├── nptl-aeabi_unwind_cpp_pr1.c │ │ ├── pt-vfork.S │ │ ├── pthread_once.c │ │ ├── rt-aeabi_unwind_cpp_pr1.c │ │ ├── sysdep-cancel.h │ │ ├── unwind-forcedunwind.c │ │ ├── unwind-resume.c │ │ ├── unwind.h │ │ └── vfork.S │ ├── oldgetrlimit.c │ ├── oldgetrlimit64.c │ ├── oldsetrlimit.c │ ├── posix_fadvise.c │ ├── posix_fadvise64.c │ ├── pread.c │ ├── pread64.c │ ├── profil-counter.h │ ├── pwrite.c │ ├── pwrite64.c │ ├── readahead.c │ ├── readdir64.c │ ├── readdir64_r.c │ ├── readelflib.c │ ├── register-dump.h │ ├── scandir64.c │ ├── semctl.c │ ├── setcontext.S │ ├── setegid.c │ ├── seteuid.c │ ├── setfsgid.c │ ├── setfsuid.c │ ├── setgid.c │ ├── setgroups.c │ ├── setregid.c │ ├── setresgid.c │ ├── setresuid.c │ ├── setreuid.c │ ├── setrlimit.c │ ├── setuid.c │ ├── shmctl.c │ ├── sigaction.c │ ├── sigcontextinfo.h │ ├── sigrestorer.S │ ├── swapcontext.S │ ├── sys │ │ ├── elf.h │ │ ├── io.h │ │ ├── procfs.h │ │ ├── ucontext.h │ │ └── user.h │ ├── syscall.S │ ├── syscalls.list │ ├── sysdep.S │ ├── sysdep.h │ ├── truncate64.c │ ├── ucontext_i.sym │ ├── umount.c │ ├── versionsort64.c │ ├── vfork.S │ └── xstat.c │ ├── generic │ ├── Makefile │ ├── ____longjmp_chk.c │ ├── access.c │ ├── bits │ │ ├── fcntl.h │ │ ├── msq.h │ │ ├── sem.h │ │ ├── shm.h │ │ ├── stat.h │ │ ├── statfs.h │ │ └── typesizes.h │ ├── brk.c │ ├── chmod.c │ ├── chown.c │ ├── creat.c │ ├── dl-origin.c │ ├── dup2.c │ ├── epoll_create.c │ ├── epoll_wait.c │ ├── futimesat.c │ ├── getdents.c │ ├── getdents64.c │ ├── inotify_init.c │ ├── kernel_stat.h │ ├── lchown.c │ ├── link.c │ ├── lxstat.c │ ├── mkdir.c │ ├── not-cancel.h │ ├── nptl │ │ └── not-cancel.h │ ├── open.c │ ├── open64.c │ ├── pause.c │ ├── pipe.c │ ├── poll.c │ ├── readlink.c │ ├── readlink_chk.c │ ├── recv.c │ ├── rename.c │ ├── rmdir.c │ ├── select.c │ ├── send.c │ ├── symlink.c │ ├── syscalls.list │ ├── sysctl.c │ ├── sysdep.h │ ├── umount.c │ ├── unlink.c │ ├── ustat.c │ ├── utimes.c │ ├── wordsize-32 │ │ ├── Versions │ │ ├── fcntl.c │ │ ├── fstatfs.c │ │ ├── ftruncate.c │ │ ├── ftruncate64.c │ │ ├── fxstat.c │ │ ├── fxstatat.c │ │ ├── getdents.c │ │ ├── llseek.c │ │ ├── lseek.c │ │ ├── lxstat.c │ │ ├── lxstat64.c │ │ ├── mmap.c │ │ ├── overflow.h │ │ ├── posix_fadvise.c │ │ ├── pread.c │ │ ├── pread64.c │ │ ├── preadv.c │ │ ├── preadv64.c │ │ ├── pwrite.c │ │ ├── pwrite64.c │ │ ├── pwritev.c │ │ ├── pwritev64.c │ │ ├── sendfile.c │ │ ├── statfs.c │ │ ├── syscalls.list │ │ ├── truncate.c │ │ ├── truncate64.c │ │ ├── xstat.c │ │ └── xstat64.c │ ├── xmknod.c │ └── xstat.c │ ├── hppa │ ├── Makefile │ ├── Versions │ ├── ____longjmp_chk.c │ ├── bits │ │ ├── atomic.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── ioctls.h │ │ ├── ipc.h │ │ ├── mman.h │ │ ├── msq.h │ │ ├── sem.h │ │ ├── shm.h │ │ ├── sigaction.h │ │ ├── signum.h │ │ └── socket_type.h │ ├── brk.c │ ├── clone.S │ ├── fcntl.c │ ├── fxstat.c │ ├── fxstatat.c │ ├── getcontext.S │ ├── getdents64.c │ ├── getrlimit64.c │ ├── internaltypes.h │ ├── kernel-features.h │ ├── kernel_sigaction.h │ ├── kernel_stat.h │ ├── lxstat.c │ ├── makecontext.c │ ├── mmap.c │ ├── nptl │ │ ├── bits │ │ │ ├── pthreadtypes.h │ │ │ └── semaphore.h │ │ ├── clone.S │ │ ├── createthread.c │ │ ├── fork.c │ │ ├── libc-lowlevellock.c │ │ ├── lowlevellock.c │ │ ├── lowlevellock.h │ │ ├── pt-vfork.S │ │ ├── pthread.h │ │ ├── pthreadP.h │ │ ├── pthread_cond_broadcast.c │ │ ├── pthread_cond_destroy.c │ │ ├── pthread_cond_init.c │ │ ├── pthread_cond_signal.c │ │ ├── pthread_cond_timedwait.c │ │ ├── pthread_cond_wait.c │ │ ├── pthread_once.c │ │ └── sysdep-cancel.h │ ├── profil-counter.h │ ├── setcontext.S │ ├── socket.S │ ├── swapcontext.c │ ├── sys │ │ ├── epoll.h │ │ ├── eventfd.h │ │ ├── inotify.h │ │ ├── procfs.h │ │ ├── signalfd.h │ │ ├── timerfd.h │ │ ├── ucontext.h │ │ └── user.h │ ├── syscall.S │ ├── syscalls.list │ ├── sysdep.c │ ├── sysdep.h │ ├── ucontext_i.sym │ ├── umount.c │ └── xstat.c │ ├── ia64 │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── ____longjmp_chk.S │ ├── __longjmp.S │ ├── __start_context.S │ ├── bits │ │ ├── endian.h │ │ ├── fcntl.h │ │ ├── ipc.h │ │ ├── mman.h │ │ ├── msq.h │ │ ├── sem.h │ │ ├── setjmp.h │ │ ├── shm.h │ │ ├── sigaction.h │ │ ├── sigcontext.h │ │ ├── siginfo.h │ │ ├── sigstack.h │ │ └── stat.h │ ├── brk.S │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── clone.S │ ├── clone2.S │ ├── configure │ ├── configure.in │ ├── dl-brk.S │ ├── dl-cache.h │ ├── dl-static.c │ ├── fork.S │ ├── get_clockfreq.c │ ├── getclktck.c │ ├── getcontext.S │ ├── getpagesize.c │ ├── has_cpuclock.c │ ├── ioperm.c │ ├── kernel-features.h │ ├── kernel_stat.h │ ├── ldconfig.h │ ├── ldd-rewrite.sed │ ├── ldsodefs.h │ ├── makecontext.c │ ├── nptl │ │ ├── Makefile │ │ ├── Versions │ │ ├── __ia64_longjmp.S │ │ ├── __sigstack_longjmp.c │ │ ├── bits │ │ │ ├── local_lim.h │ │ │ ├── pthreadtypes.h │ │ │ └── semaphore.h │ │ ├── c++-types.data │ │ ├── clone2.S │ │ ├── createthread.c │ │ ├── dl-sysdep.h │ │ ├── fork.c │ │ ├── ld.abilist │ │ ├── libBrokenLocale.abilist │ │ ├── libanl.abilist │ │ ├── libc.abilist │ │ ├── libcrypt.abilist │ │ ├── libdl.abilist │ │ ├── libm.abilist │ │ ├── libnsl.abilist │ │ ├── libpthread.abilist │ │ ├── libresolv.abilist │ │ ├── librt.abilist │ │ ├── libthread_db.abilist │ │ ├── libutil.abilist │ │ ├── localplt.data │ │ ├── lowlevellock.h │ │ ├── pt-vfork.S │ │ ├── pthread_once.c │ │ ├── sysdep-cancel.h │ │ ├── timer_create.c │ │ ├── timer_delete.c │ │ ├── timer_getoverr.c │ │ ├── timer_gettime.c │ │ ├── timer_settime.c │ │ ├── unwind-forcedunwind.c │ │ ├── unwind_longjmp.c │ │ └── vfork.S │ ├── pipe.S │ ├── profil-counter.h │ ├── readelflib.c │ ├── register-dump.h │ ├── rt-sysdep.S │ ├── setcontext.S │ ├── setjmp.S │ ├── sigaction.c │ ├── sigcontext-offsets.sym │ ├── sigcontextinfo.h │ ├── sigpending.c │ ├── sigprocmask.c │ ├── swapcontext.c │ ├── sys │ │ ├── io.h │ │ ├── procfs.h │ │ ├── ptrace.h │ │ ├── rse.h │ │ ├── ucontext.h │ │ └── user.h │ ├── syscall.S │ ├── syscalls.list │ ├── sysconf.c │ ├── sysdep.S │ ├── sysdep.h │ ├── system.c │ ├── ucontext_i.h │ ├── umount.c │ ├── unwind-dw2-fde.c │ ├── vfork.S │ └── wordexp.c │ ├── m68k │ ├── Makefile │ ├── Versions │ ├── ____longjmp_chk.c │ ├── alphasort64.c │ ├── bits │ │ ├── a.out.h │ │ ├── fcntl.h │ │ ├── m68k-vdso.h │ │ ├── mman.h │ │ ├── poll.h │ │ └── stat.h │ ├── brk.c │ ├── clone.S │ ├── coldfire │ │ ├── nptl │ │ │ ├── bits │ │ │ │ └── atomic.h │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libcrypt.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ └── libutil.abilist │ │ └── sysdep.h │ ├── configure │ ├── configure.in │ ├── dl-librecon.h │ ├── fchown.c │ ├── fchownat.c │ ├── fcntl.c │ ├── fxstat.c │ ├── fxstatat.c │ ├── getdents64.c │ ├── getegid.c │ ├── geteuid.c │ ├── getgid.c │ ├── getgroups.c │ ├── getmsg.c │ ├── getpagesize.c │ ├── getresgid.c │ ├── getresuid.c │ ├── getrlimit64.c │ ├── getsysstats.c │ ├── getuid.c │ ├── glob64.c │ ├── init-first.c │ ├── kernel-features.h │ ├── lchown.c │ ├── ldconfig.h │ ├── libc-m68k-vdso.c │ ├── lockf64.c │ ├── lxstat.c │ ├── m680x0 │ │ ├── Makefile │ │ ├── getcontext.S │ │ ├── makecontext.S │ │ ├── nptl │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libcrypt.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ └── libutil.abilist │ │ ├── setcontext.S │ │ ├── swapcontext.S │ │ ├── syscalls.list │ │ ├── sysdep.h │ │ └── ucontext_i.sym │ ├── m68k-helpers.S │ ├── m68k-vdso.c │ ├── mmap.S │ ├── mremap.S │ ├── msgctl.c │ ├── nptl │ │ ├── bits │ │ │ ├── pthreadtypes.h │ │ │ └── semaphore.h │ │ ├── c++-types.data │ │ ├── clone.S │ │ ├── createthread.c │ │ ├── fork.c │ │ ├── localplt.data │ │ ├── lowlevellock.h │ │ ├── not-cancel.h │ │ ├── pt-vfork.S │ │ ├── pthread_once.c │ │ ├── sysdep-cancel.h │ │ └── vfork.S │ ├── oldgetrlimit64.c │ ├── putmsg.c │ ├── readdir64.c │ ├── readdir64_r.c │ ├── register-dump.h │ ├── scandir64.c │ ├── semctl.c │ ├── semtimedop.S │ ├── setegid.c │ ├── seteuid.c │ ├── setfsgid.c │ ├── setfsuid.c │ ├── setgid.c │ ├── setgroups.c │ ├── setregid.c │ ├── setresgid.c │ ├── setresuid.c │ ├── setreuid.c │ ├── setrlimit.c │ ├── setuid.c │ ├── shmctl.c │ ├── sigcontextinfo.h │ ├── socket.S │ ├── sys │ │ ├── procfs.h │ │ ├── reg.h │ │ ├── ucontext.h │ │ └── user.h │ ├── syscall.S │ ├── syscalls.list │ ├── sysdep.S │ ├── sysdep.h │ ├── versionsort64.c │ ├── vfork.S │ └── xstat.c │ ├── microblaze │ ├── Makefile │ ├── Versions │ ├── ____longjmp_chk.S │ ├── bits │ │ ├── fcntl.h │ │ ├── mman.h │ │ └── stat.h │ ├── brk.c │ ├── clone.S │ ├── configure │ ├── configure.in │ ├── fcntl.c │ ├── fxstat.c │ ├── fxstatat.c │ ├── getsysstats.c │ ├── kernel-features.h │ ├── kernel_stat.h │ ├── lxstat.c │ ├── mmap.S │ ├── msgctl.c │ ├── nptl │ │ ├── bits │ │ │ ├── pthreadtypes.h │ │ │ └── semaphore.h │ │ ├── c++-types.data │ │ ├── createthread.c │ │ ├── fork.c │ │ ├── ld.abilist │ │ ├── libBrokenLocale.abilist │ │ ├── libanl.abilist │ │ ├── libc.abilist │ │ ├── libcrypt.abilist │ │ ├── libdl.abilist │ │ ├── libm.abilist │ │ ├── libnsl.abilist │ │ ├── libpthread.abilist │ │ ├── libresolv.abilist │ │ ├── librt.abilist │ │ ├── libthread_db.abilist │ │ ├── libutil.abilist │ │ ├── localplt.data │ │ ├── lowlevellock.h │ │ ├── pt-vfork.S │ │ ├── pthread_once.c │ │ └── vfork.S │ ├── profil-counter.h │ ├── semctl.c │ ├── setgroups.c │ ├── shmctl.c │ ├── sigcontextinfo.h │ ├── socket.S │ ├── sys │ │ ├── procfs.h │ │ └── user.h │ ├── syscall.S │ ├── syscalls.list │ ├── sysdep.S │ ├── sysdep.h │ └── xstat.c │ ├── mips │ ├── Makefile │ ├── Versions │ ├── ____longjmp_chk.c │ ├── _test_and_set.c │ ├── bits │ │ ├── endian.h │ │ ├── epoll.h │ │ ├── errno.h │ │ ├── eventfd.h │ │ ├── fcntl.h │ │ ├── inotify.h │ │ ├── ioctl-types.h │ │ ├── ipc.h │ │ ├── mman.h │ │ ├── msq.h │ │ ├── poll.h │ │ ├── resource.h │ │ ├── sem.h │ │ ├── shm.h │ │ ├── sigaction.h │ │ ├── sigcontext.h │ │ ├── siginfo.h │ │ ├── signalfd.h │ │ ├── signum.h │ │ ├── sigstack.h │ │ ├── socket_type.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── termios.h │ │ └── timerfd.h │ ├── brk.c │ ├── clone.S │ ├── configure │ ├── configure.in │ ├── dl-cache.h │ ├── dl-static.c │ ├── getcontext.S │ ├── getmsg.c │ ├── getsysstats.c │ ├── ipc_priv.h │ ├── kernel-features.h │ ├── kernel_rt_sigframe.h │ ├── kernel_sigaction.h │ ├── kernel_stat.h │ ├── kernel_termios.h │ ├── ldsodefs.h │ ├── libc-abis │ ├── makecontext.S │ ├── mips32 │ │ ├── accept4.c │ │ ├── fcntl.c │ │ ├── ftruncate64.c │ │ ├── fxstatat.c │ │ ├── internal_accept4.S │ │ ├── internal_recvmmsg.S │ │ ├── internal_sendmmsg.S │ │ ├── lockf64.c │ │ ├── mips16 │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── mips16-syscall.h │ │ │ ├── mips16-syscall0.c │ │ │ ├── mips16-syscall1.c │ │ │ ├── mips16-syscall2.c │ │ │ ├── mips16-syscall3.c │ │ │ ├── mips16-syscall4.c │ │ │ ├── mips16-syscall5.c │ │ │ ├── mips16-syscall6.c │ │ │ └── mips16-syscall7.c │ │ ├── nptl │ │ │ ├── c++-types.data │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libcidn.abilist │ │ │ ├── libcrypt.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libnss_compat.abilist │ │ │ ├── libnss_db.abilist │ │ │ ├── libnss_dns.abilist │ │ │ ├── libnss_files.abilist │ │ │ ├── libnss_hesiod.abilist │ │ │ ├── libnss_nis.abilist │ │ │ ├── libnss_nisplus.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ └── libutil.abilist │ │ ├── posix_fadvise.c │ │ ├── posix_fadvise64.c │ │ ├── readahead.c │ │ ├── recvmmsg.c │ │ ├── sendmmsg.c │ │ ├── sync_file_range.c │ │ ├── syscalls.list │ │ ├── sysdep.h │ │ └── truncate64.c │ ├── mips64 │ │ ├── Makefile │ │ ├── configure │ │ ├── configure.in │ │ ├── ftruncate64.c │ │ ├── fxstat64.c │ │ ├── fxstatat64.c │ │ ├── ldconfig.h │ │ ├── ldd-rewrite.sed │ │ ├── llseek.c │ │ ├── lxstat64.c │ │ ├── mmap64.c │ │ ├── msgctl.c │ │ ├── n32 │ │ │ ├── fallocate.c │ │ │ ├── fallocate64.c │ │ │ ├── fcntl.c │ │ │ ├── lockf64.c │ │ │ ├── nptl │ │ │ │ ├── c++-types.data │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ └── libutil.abilist │ │ │ ├── posix_fadvise.c │ │ │ ├── posix_fadvise64.c │ │ │ ├── posix_fallocate.c │ │ │ ├── posix_fallocate64.c │ │ │ ├── syscalls.list │ │ │ └── sysdep.h │ │ ├── n64 │ │ │ ├── fallocate.c │ │ │ ├── fallocate64.c │ │ │ ├── fstatfs64.c │ │ │ ├── ftw.c │ │ │ ├── ftw64.c │ │ │ ├── glob64.c │ │ │ ├── ioctl.S │ │ │ ├── nptl │ │ │ │ ├── c++-types.data │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ └── libutil.abilist │ │ │ ├── posix_fadvise.c │ │ │ ├── posix_fadvise64.c │ │ │ ├── posix_fallocate.c │ │ │ ├── posix_fallocate64.c │ │ │ ├── preadv64.c │ │ │ ├── pwritev64.c │ │ │ ├── sendfile64.c │ │ │ ├── statfs64.c │ │ │ ├── syscalls.list │ │ │ └── sysdep.h │ │ ├── nptl │ │ │ └── sysdep-cancel.h │ │ ├── recv.c │ │ ├── semctl.c │ │ ├── send.c │ │ ├── shmctl.c │ │ ├── syscall.S │ │ ├── syscalls.list │ │ ├── truncate64.c │ │ ├── umount.c │ │ └── xstat64.c │ ├── nptl │ │ ├── bits │ │ │ ├── local_lim.h │ │ │ ├── pthreadtypes.h │ │ │ └── semaphore.h │ │ ├── clone.S │ │ ├── createthread.c │ │ ├── fork.c │ │ ├── lowlevellock.h │ │ ├── pt-vfork.S │ │ ├── pthread_once.c │ │ ├── sysdep-cancel.h │ │ └── vfork.S │ ├── pipe.S │ ├── pread.c │ ├── pread64.c │ ├── profil-counter.h │ ├── putmsg.c │ ├── pwrite.c │ ├── pwrite64.c │ ├── readelflib.c │ ├── register-dump.h │ ├── setcontext.S │ ├── sigaction.c │ ├── sigcontextinfo.h │ ├── swapcontext.S │ ├── sys │ │ ├── cachectl.h │ │ ├── procfs.h │ │ ├── sysmips.h │ │ ├── ucontext.h │ │ └── user.h │ ├── syscalls.list │ ├── ucontext_i.sym │ ├── ustat.c │ ├── vfork.S │ └── xstatconv.c │ ├── powerpc │ └── powerpc32 │ │ ├── 405 │ │ └── Implies │ │ ├── 440 │ │ └── Implies │ │ ├── 464 │ │ └── Implies │ │ ├── 476 │ │ └── Implies │ │ ├── e500 │ │ ├── fpu │ │ │ ├── Implies │ │ │ ├── getcontext-extra.S │ │ │ ├── getcontext.S │ │ │ ├── setcontext-extra.S │ │ │ ├── setcontext.S │ │ │ └── swapcontext.S │ │ ├── nptl │ │ │ ├── c++-types.data │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libcrypt.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ ├── libutil.abilist │ │ │ └── localplt.data │ │ ├── shlib-versions │ │ └── single │ │ │ ├── Implies │ │ │ ├── nptl │ │ │ ├── c++-types.data │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libcrypt.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ ├── libutil.abilist │ │ │ └── localplt.data │ │ │ └── shlib-versions │ │ └── nofpu │ │ ├── Implies │ │ ├── getcontext.S │ │ ├── nptl │ │ ├── c++-types.data │ │ ├── ld.abilist │ │ ├── libBrokenLocale.abilist │ │ ├── libanl.abilist │ │ ├── libc.abilist │ │ ├── libcrypt.abilist │ │ ├── libdl.abilist │ │ ├── libm.abilist │ │ ├── libnsl.abilist │ │ ├── libpthread.abilist │ │ ├── libresolv.abilist │ │ ├── librt.abilist │ │ ├── libthread_db.abilist │ │ ├── libutil.abilist │ │ └── localplt.data │ │ ├── setcontext.S │ │ └── swapcontext.S │ └── tile │ ├── Makefile │ ├── Versions │ ├── bits │ ├── environments.h │ ├── libc-vdso.h │ ├── local_lim.h │ ├── mman.h │ ├── sigaction.h │ └── siginfo.h │ ├── cacheflush.c │ ├── configure │ ├── configure.in │ ├── dl-static.c │ ├── getcontext.S │ ├── gettimeofday.c │ ├── init-first.c │ ├── kernel-features.h │ ├── ldsodefs.h │ ├── makecontext.c │ ├── nptl │ ├── Makefile │ ├── bits │ │ ├── pthreadtypes.h │ │ └── semaphore.h │ ├── clone.S │ ├── createthread.c │ ├── fork.c │ ├── lowlevellock.h │ ├── pt-vfork.S │ ├── pthread_once.c │ ├── sysdep-cancel.h │ ├── vfork.S │ └── waitpid.S │ ├── profil-counter.h │ ├── set_dataplane.c │ ├── setcontext.S │ ├── sigcontextinfo.h │ ├── swapcontext.S │ ├── sys │ ├── cachectl.h │ ├── dataplane.h │ ├── procfs.h │ ├── ptrace.h │ ├── reg.h │ ├── ucontext.h │ └── user.h │ ├── syscall.S │ ├── sysdep.c │ ├── sysdep.h │ ├── tilegx │ ├── Makefile │ ├── configure │ ├── configure.in │ ├── ioctl.S │ ├── ldconfig.h │ ├── ldd-rewrite.sed │ ├── register-dump.h │ ├── sched_getcpu.c │ ├── tilegx32 │ │ ├── Implies │ │ ├── Makefile │ │ └── nptl │ │ │ ├── c++-types.data │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libcrypt.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ └── libutil.abilist │ └── tilegx64 │ │ ├── Implies │ │ ├── Makefile │ │ └── nptl │ │ ├── c++-types.data │ │ ├── ld.abilist │ │ ├── libBrokenLocale.abilist │ │ ├── libanl.abilist │ │ ├── libc.abilist │ │ ├── libcrypt.abilist │ │ ├── libdl.abilist │ │ ├── libm.abilist │ │ ├── libnsl.abilist │ │ ├── libpthread.abilist │ │ ├── libresolv.abilist │ │ ├── librt.abilist │ │ ├── libthread_db.abilist │ │ └── libutil.abilist │ ├── tilepro │ ├── Implies │ ├── ldconfig.h │ ├── nptl │ │ ├── c++-types.data │ │ ├── ld.abilist │ │ ├── libBrokenLocale.abilist │ │ ├── libanl.abilist │ │ ├── libc.abilist │ │ ├── libcrypt.abilist │ │ ├── libdl.abilist │ │ ├── libm.abilist │ │ ├── libnsl.abilist │ │ ├── libpthread.abilist │ │ ├── libresolv.abilist │ │ ├── librt.abilist │ │ ├── libthread_db.abilist │ │ └── libutil.abilist │ └── register-dump.h │ └── ucontext_i.h ├── posix ├── BOOST.tests ├── Depend ├── Makefile ├── PCRE.tests ├── PTESTS ├── PTESTS2C.sed ├── TESTS ├── TESTS2C.sed ├── Versions ├── _exit.c ├── alarm.c ├── annexc.c ├── bits │ ├── posix1_lim.h │ ├── posix2_lim.h │ └── unistd.h ├── bsd-getpgrp.c ├── bug-ga1.c ├── bug-ga2.c ├── bug-getopt1.c ├── bug-getopt2.c ├── bug-getopt3.c ├── bug-getopt4.c ├── bug-getopt5.c ├── bug-glob1.c ├── bug-glob2.c ├── bug-glob3.c ├── bug-regex1.c ├── bug-regex10.c ├── bug-regex11.c ├── bug-regex12.c ├── bug-regex13.c ├── bug-regex14.c ├── bug-regex15.c ├── bug-regex16.c ├── bug-regex17.c ├── bug-regex18.c ├── bug-regex19.c ├── bug-regex2.c ├── bug-regex20.c ├── bug-regex21.c ├── bug-regex22.c ├── bug-regex23.c ├── bug-regex24.c ├── bug-regex25.c ├── bug-regex26.c ├── bug-regex27.c ├── bug-regex28.c ├── bug-regex29.c ├── bug-regex3.c ├── bug-regex30.c ├── bug-regex31.c ├── bug-regex31.input ├── bug-regex32.c ├── bug-regex33.c ├── bug-regex34.c ├── bug-regex35.c ├── bug-regex4.c ├── bug-regex5.c ├── bug-regex6.c ├── bug-regex7.c ├── bug-regex8.c ├── bug-regex9.c ├── confstr.c ├── cpio.h ├── environ.c ├── execl.c ├── execle.c ├── execlp.c ├── execv.c ├── execve.c ├── execvp.c ├── execvpe.c ├── fexecve.c ├── fnmatch.c ├── fnmatch.h ├── fnmatch_loop.c ├── fork.c ├── fpathconf.c ├── gai.conf ├── gai_strerror.c ├── get_child_max.c ├── getaddrinfo.c ├── getconf-speclist.c ├── getconf.c ├── getegid.c ├── geteuid.c ├── getgid.c ├── getgroups.c ├── getopt.c ├── getopt.h ├── getopt1.c ├── getopt_init.c ├── getopt_int.h ├── getpgid.c ├── getpgrp.c ├── getpid.c ├── getppid.c ├── getresgid.c ├── getresuid.c ├── getsid.c ├── getuid.c ├── glob.c ├── glob.h ├── glob64.c ├── globtest.c ├── globtest.sh ├── group_member.c ├── init-posix.c ├── nanosleep.c ├── pathconf.c ├── pause.c ├── posix-envs.def ├── posix_madvise.c ├── pread.c ├── pread64.c ├── ptestcases.h ├── pwrite.c ├── pwrite64.c ├── re_comp.h ├── regcomp.c ├── regex.c ├── regex.h ├── regex_internal.c ├── regex_internal.h ├── regexbug1.c ├── regexec-compat.c ├── regexec.c ├── runptests.c ├── runtests.c ├── rxspencer │ ├── COPYRIGHT │ └── tests ├── sched.h ├── sched_cpualloc.c ├── sched_cpucount.c ├── sched_cpufree.c ├── sched_getaffinity.c ├── sched_getp.c ├── sched_gets.c ├── sched_primax.c ├── sched_primin.c ├── sched_rr_gi.c ├── sched_setaffinity.c ├── sched_setp.c ├── sched_sets.c ├── sched_yield.c ├── setgid.c ├── setpgid.c ├── setpgrp.c ├── setresgid.c ├── setresuid.c ├── setsid.c ├── setuid.c ├── sleep.c ├── spawn.c ├── spawn.h ├── spawn_faction_addclose.c ├── spawn_faction_adddup2.c ├── spawn_faction_addopen.c ├── spawn_faction_destroy.c ├── spawn_faction_init.c ├── spawn_int.h ├── spawnattr_destroy.c ├── spawnattr_getdefault.c ├── spawnattr_getflags.c ├── spawnattr_getpgroup.c ├── spawnattr_getschedparam.c ├── spawnattr_getschedpolicy.c ├── spawnattr_getsigmask.c ├── spawnattr_init.c ├── spawnattr_setdefault.c ├── spawnattr_setflags.c ├── spawnattr_setpgroup.c ├── spawnattr_setschedparam.c ├── spawnattr_setschedpolicy.c ├── spawnattr_setsigmask.c ├── spawni.c ├── spawnp.c ├── sys │ ├── times.h │ ├── types.h │ ├── unistd.h │ ├── utsname.h │ └── wait.h ├── sysconf.c ├── tar.h ├── test-vfork.c ├── testcases.h ├── testfnm.c ├── times.c ├── transbug.c ├── tst-boost.c ├── tst-chmod.c ├── tst-cpucount.c ├── tst-cpuset.c ├── tst-dir.c ├── tst-exec-static.c ├── tst-exec.c ├── tst-execl1.c ├── tst-execl2.c ├── tst-execle1.c ├── tst-execle2.c ├── tst-execlp1.c ├── tst-execlp2.c ├── tst-execv1.c ├── tst-execv2.c ├── tst-execve1.c ├── tst-execve2.c ├── tst-execvp1.c ├── tst-execvp2.c ├── tst-execvp3.c ├── tst-execvp4.c ├── tst-fnmatch.c ├── tst-fnmatch.input ├── tst-fnmatch2.c ├── tst-fork.c ├── tst-getaddrinfo.c ├── tst-getaddrinfo2.c ├── tst-getaddrinfo3.c ├── tst-getaddrinfo4.c ├── tst-getconf.sh ├── tst-getlogin.c ├── tst-getopt_long1.c ├── tst-gnuglob.c ├── tst-mmap.c ├── tst-nanosleep.c ├── tst-nice.c ├── tst-pathconf.c ├── tst-pcre.c ├── tst-preadwrite.c ├── tst-preadwrite64.c ├── tst-regex.c ├── tst-regex2.c ├── tst-regexloc.c ├── tst-rfc3484-2.c ├── tst-rfc3484-3.c ├── tst-rfc3484.c ├── tst-rxspencer.c ├── tst-spawn-static.c ├── tst-spawn.c ├── tst-sysconf.c ├── tst-truncate.c ├── tst-truncate64.c ├── tst-vfork1.c ├── tst-vfork2.c ├── tst-vfork3.c ├── tst-waitid.c ├── tstgetopt.c ├── uname.c ├── unistd.h ├── vfork.c ├── wait.c ├── wait.h ├── wait3.c ├── wait4.c ├── waitid.c ├── waitpid.c ├── wordexp-test.c ├── wordexp-tst.sh ├── wordexp.c ├── wordexp.h └── xregex.c ├── pwd ├── Makefile ├── Versions ├── fgetpwent.c ├── fgetpwent_r.c ├── getpw.c ├── getpwent.c ├── getpwent_r.c ├── getpwnam.c ├── getpwnam_r.c ├── getpwuid.c ├── getpwuid_r.c ├── putpwent.c ├── pwd.h └── tst-getpw.c ├── resolv ├── Banner ├── Depend ├── Makefile ├── README ├── Versions ├── arpa │ ├── nameser.h │ └── nameser_compat.h ├── base64.c ├── ga_test.c ├── gai_cancel.c ├── gai_error.c ├── gai_misc.c ├── gai_misc.h ├── gai_notify.c ├── gai_sigqueue.c ├── gai_suspend.c ├── getaddrinfo_a.c ├── gethnamaddr.c ├── herror.c ├── inet_addr.c ├── inet_net_ntop.c ├── inet_net_pton.c ├── inet_neta.c ├── inet_ntop.c ├── inet_pton.c ├── mapv4v6addr.h ├── mapv4v6hostent.h ├── netdb.h ├── ns_date.c ├── ns_name.c ├── ns_netint.c ├── ns_parse.c ├── ns_print.c ├── ns_samedomain.c ├── ns_ttl.c ├── nsap_addr.c ├── nss_dns │ ├── dns-canon.c │ ├── dns-host.c │ └── dns-network.c ├── res-state.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 ├── resolv.h ├── sys │ └── bitypes.h ├── tst-aton.c ├── tst-inet_ntop.c ├── tst-leaks.c └── tst-leaks2.c ├── resource ├── Makefile ├── Versions ├── bug-ulimit1.c ├── getpriority.c ├── getrlimit.c ├── getrlimit64.c ├── getrusage.c ├── nice.c ├── setpriority.c ├── setrlimit.c ├── setrlimit64.c ├── sys │ ├── resource.h │ ├── vlimit.h │ └── vtimes.h ├── tst-getrlimit.c ├── ulimit.c ├── ulimit.h ├── vlimit.c └── vtimes.c ├── rt ├── Depend ├── Makefile ├── Versions ├── aio.h ├── aio_cancel.c ├── aio_error.c ├── aio_fsync.c ├── aio_misc.c ├── aio_notify.c ├── aio_read.c ├── aio_read64.c ├── aio_return.c ├── aio_sigqueue.c ├── aio_suspend.c ├── aio_write.c ├── aio_write64.c ├── bits │ └── mqueue2.h ├── clock-compat.c ├── clock_getcpuclockid.c ├── clock_getres.c ├── clock_gettime.c ├── clock_nanosleep.c ├── clock_settime.c ├── get_clockfreq.c ├── lio_listio.c ├── lio_listio64.c ├── mq_close.c ├── mq_getattr.c ├── mq_notify.c ├── mq_open.c ├── mq_receive.c ├── mq_send.c ├── mq_setattr.c ├── mq_timedreceive.c ├── mq_timedsend.c ├── mq_unlink.c ├── mqueue.h ├── shm_open.c ├── shm_unlink.c ├── timer_create.c ├── timer_delete.c ├── timer_getoverr.c ├── timer_gettime.c ├── timer_settime.c ├── tst-aio.c ├── tst-aio10.c ├── tst-aio2.c ├── tst-aio3.c ├── tst-aio4.c ├── tst-aio5.c ├── tst-aio6.c ├── tst-aio64.c ├── tst-aio7.c ├── tst-aio8.c ├── tst-aio9.c ├── tst-clock.c ├── tst-clock2.c ├── tst-clock_nanosleep.c ├── tst-cpuclock1.c ├── tst-cpuclock2.c ├── tst-cputimer1.c ├── tst-cputimer2.c ├── tst-cputimer3.c ├── tst-mqueue.h ├── tst-mqueue1.c ├── tst-mqueue2.c ├── tst-mqueue3.c ├── tst-mqueue4.c ├── tst-mqueue5.c ├── tst-mqueue6.c ├── tst-mqueue7.c ├── tst-mqueue8.c ├── tst-mqueue9.c ├── tst-shm.c ├── tst-timer.c ├── tst-timer2.c ├── tst-timer3.c ├── tst-timer4.c └── tst-timer5.c ├── scripts ├── abi-versions.awk ├── abilist.awk ├── begin-end-check.pl ├── bench.pl ├── check-c++-types.sh ├── check-execstack.awk ├── check-local-headers.sh ├── check-localplt.awk ├── check-textrel.awk ├── config-uname.sh ├── config.guess ├── config.sub ├── cpp ├── cross-test-ssh.sh ├── documented.sh ├── firstversions.awk ├── gen-as-const.awk ├── gen-libc-abis ├── gen-sorted.awk ├── install-sh ├── lib-names.awk ├── list-sources.sh ├── localplt.awk ├── mkinstalldirs ├── move-if-change ├── option-groups.awk ├── output-format.sed ├── rellns-sh ├── rpm2dynsym.sh ├── soversions.awk ├── sysd-rules.awk ├── test-installation.pl ├── update-copyrights └── versions.awk ├── setjmp ├── Makefile ├── Versions ├── __longjmp.c ├── bits │ └── setjmp2.h ├── bsd-_setjmp.c ├── bsd-setjmp.c ├── bug269-setjmp.c ├── jmp-unwind.c ├── jmpbug.c ├── longjmp.c ├── setjmp.c ├── setjmp.h ├── sigjmp.c ├── tst-setjmp-fp.c ├── tst-setjmp.c └── tst-sigsetjmp.c ├── shadow ├── Makefile ├── Versions ├── fgetspent.c ├── fgetspent_r.c ├── getspent.c ├── getspent_r.c ├── getspnam.c ├── getspnam_r.c ├── lckpwdf.c ├── putspent.c ├── sgetspent.c ├── sgetspent_r.c ├── shadow.h └── tst-shadow.c ├── shlib-versions ├── signal ├── Makefile ├── Versions ├── allocrtsig.c ├── kill.c ├── killpg.c ├── raise.c ├── sigaction.c ├── sigaddset.c ├── sigaltstack.c ├── sigandset.c ├── sigblock.c ├── sigdelset.c ├── sigempty.c ├── sigfillset.c ├── siggetmask.c ├── sighold.c ├── sigignore.c ├── sigintr.c ├── sigisempty.c ├── sigismem.c ├── signal.c ├── signal.h ├── sigorset.c ├── sigpause.c ├── sigpending.c ├── sigprocmask.c ├── sigqueue.c ├── sigrelse.c ├── sigreturn.c ├── sigset.c ├── sigsetmask.c ├── sigsetops.c ├── sigsetops.h ├── sigstack.c ├── sigsuspend.c ├── sigtimedwait.c ├── sigvec.c ├── sigwait.c ├── sigwaitinfo.c ├── sys │ └── signal.h ├── sysv_signal.c ├── tst-raise.c ├── tst-signal.c ├── tst-sigset.c ├── tst-sigset2.c └── tst-sigsimple.c ├── socket ├── Makefile ├── Versions ├── accept.c ├── accept4.c ├── bind.c ├── bits │ └── socket2.h ├── connect.c ├── getpeername.c ├── getsockname.c ├── getsockopt.c ├── have_sock_cloexec.c ├── isfdtype.c ├── listen.c ├── opensock.c ├── recv.c ├── recvfrom.c ├── recvmmsg.c ├── recvmsg.c ├── send.c ├── sendmmsg.c ├── sendmsg.c ├── sendto.c ├── setsockopt.c ├── shutdown.c ├── sockatmark.c ├── socket.c ├── socketpair.c └── sys │ ├── socket.h │ └── un.h ├── soft-fp ├── Banner ├── Makefile ├── adddf3.c ├── addsf3.c ├── addtf3.c ├── divdf3.c ├── divsf3.c ├── divtf3.c ├── double.h ├── eqdf2.c ├── eqsf2.c ├── eqtf2.c ├── extenddftf2.c ├── extended.h ├── extendsfdf2.c ├── extendsftf2.c ├── fixdfdi.c ├── fixdfsi.c ├── fixsfdi.c ├── fixsfsi.c ├── fixtfdi.c ├── fixtfsi.c ├── fixunsdfdi.c ├── fixunsdfsi.c ├── fixunssfdi.c ├── fixunssfsi.c ├── fixunstfdi.c ├── fixunstfsi.c ├── floatdidf.c ├── floatdisf.c ├── floatditf.c ├── floatsidf.c ├── floatsisf.c ├── floatsitf.c ├── floatundidf.c ├── floatundisf.c ├── floatunditf.c ├── floatunsidf.c ├── floatunsisf.c ├── floatunsitf.c ├── fmadf4.c ├── fmasf4.c ├── fmatf4.c ├── gedf2.c ├── gesf2.c ├── getf2.c ├── ledf2.c ├── lesf2.c ├── letf2.c ├── muldf3.c ├── mulsf3.c ├── multf3.c ├── negdf2.c ├── negsf2.c ├── negtf2.c ├── op-1.h ├── op-2.h ├── op-4.h ├── op-8.h ├── op-common.h ├── quad.h ├── single.h ├── soft-fp.h ├── sqrtdf2.c ├── sqrtsf2.c ├── sqrttf2.c ├── subdf3.c ├── subsf3.c ├── subtf3.c ├── testit.c ├── truncdfsf2.c ├── trunctfdf2.c ├── trunctfsf2.c ├── unorddf2.c ├── unordsf2.c └── unordtf2.c ├── stdio-common ├── Depend ├── Makefile ├── Versions ├── _i18n_number.h ├── _itoa.c ├── _itowa.c ├── _itowa.h ├── asprintf.c ├── bits │ └── printf-ldbl.h ├── bug-vfprintf-nargs.c ├── bug1.c ├── bug1.input ├── bug10.c ├── bug11.c ├── bug12.c ├── bug13.c ├── bug14.c ├── bug16.c ├── bug17.c ├── bug18.c ├── bug18a.c ├── bug19.c ├── bug19a.c ├── bug2.c ├── bug20.c ├── bug21.c ├── bug22.c ├── bug23.c ├── bug24.c ├── bug25.c ├── bug26.c ├── bug3.c ├── bug4.c ├── bug5.c ├── bug6.c ├── bug6.input ├── bug7.c ├── bug8.c ├── bug9.c ├── ctermid.c ├── cuserid.c ├── dprintf.c ├── errlist.c ├── errnobug.c ├── flockfile.c ├── fprintf.c ├── fscanf.c ├── ftrylockfile.c ├── funlockfile.c ├── fxprintf.c ├── getline.c ├── getw.c ├── isoc99_fscanf.c ├── isoc99_scanf.c ├── isoc99_sscanf.c ├── isoc99_vfscanf.c ├── isoc99_vscanf.c ├── isoc99_vsscanf.c ├── itoa-digits.c ├── itoa-udigits.c ├── itowa-digits.c ├── perror.c ├── printf-parse.h ├── printf-parsemb.c ├── printf-parsewc.c ├── printf-prs.c ├── printf.c ├── printf.h ├── printf_fp.c ├── printf_fphex.c ├── printf_size.c ├── psiginfo-data.h ├── psiginfo-define.h ├── psiginfo.c ├── psignal.c ├── putw.c ├── reg-modifier.c ├── reg-printf.c ├── reg-type.c ├── remove.c ├── rename.c ├── renameat.c ├── scanf.c ├── scanf1.c ├── scanf10.c ├── scanf11.c ├── scanf12.c ├── scanf12.input ├── scanf13.c ├── scanf14.c ├── scanf15.c ├── scanf16.c ├── scanf17.c ├── scanf2.c ├── scanf3.c ├── scanf4.c ├── scanf5.c ├── scanf7.c ├── scanf8.c ├── scanf9.c ├── siglist.c ├── snprintf.c ├── sprintf.c ├── sscanf.c ├── stdio_ext.h ├── stdio_lim.h.in ├── tempnam.c ├── tempname.c ├── temptest.c ├── test-fseek.c ├── test-fwrite.c ├── test-popen.c ├── test-vfprintf.c ├── test_rdwr.c ├── tfformat.c ├── tiformat.c ├── tllformat.c ├── tmpfile.c ├── tmpfile64.c ├── tmpnam.c ├── tmpnam_r.c ├── tst-cookie.c ├── tst-fdopen.c ├── tst-ferror.c ├── tst-ferror.input ├── tst-fgets.c ├── tst-fileno.c ├── tst-fmemopen.c ├── tst-fmemopen2.c ├── tst-fphex-wide.c ├── tst-fphex.c ├── tst-fseek.c ├── tst-fwrite.c ├── tst-gets.c ├── tst-gets.input ├── tst-grouping.c ├── tst-long-dbl-fphex.c ├── tst-obprintf.c ├── tst-perror.c ├── tst-popen.c ├── tst-popen2.c ├── tst-printf-round.c ├── tst-printf.c ├── tst-printf.sh ├── tst-printfsz.c ├── tst-put-error.c ├── tst-rndseek.c ├── tst-setvbuf1.c ├── tst-setvbuf1.expect ├── tst-sprintf.c ├── tst-sprintf2.c ├── tst-sprintf3.c ├── tst-sscanf.c ├── tst-swprintf.c ├── tst-swscanf.c ├── tst-tmpnam.c ├── tst-unbputc.c ├── tst-unbputc.sh ├── tst-ungetc.c ├── tst-unlockedio.c ├── tst-wc-printf.c ├── tstdiomisc.c ├── tstgetln.c ├── tstgetln.input ├── tstscanf.c ├── tstscanf.input ├── vfprintf.c ├── vfscanf.c ├── vfwprintf.c ├── vfwscanf.c ├── vprintf.c └── xbug.c ├── stdlib ├── Depend ├── Makefile ├── Versions ├── a64l.c ├── abort.c ├── abs.c ├── add_n.c ├── addmul_1.c ├── alloca.h ├── at_quick_exit.c ├── atexit.c ├── atof.c ├── atoi.c ├── atol.c ├── atoll.c ├── bits │ ├── monetary-ldbl.h │ ├── stdlib-float.h │ ├── stdlib-ldbl.h │ └── stdlib.h ├── bsearch.c ├── bug-fmtmsg1.c ├── bug-getcontext.c ├── bug-strtod.c ├── bug-strtod2.c ├── canonicalize.c ├── cmp.c ├── cxa_at_quick_exit.c ├── cxa_atexit.c ├── cxa_finalize.c ├── cxa_thread_atexit_impl.c ├── dbl2mpn.c ├── div.c ├── divmod_1.c ├── divrem.c ├── drand48-iter.c ├── drand48.c ├── drand48_r.c ├── erand48.c ├── erand48_r.c ├── errno.h ├── exit.c ├── exit.h ├── fmtmsg.c ├── fmtmsg.h ├── fpioconst.c ├── fpioconst.h ├── gen-fpioconst.c ├── gen-tst-strtod-round.c ├── getcontext.c ├── getenv.c ├── getsubopt.c ├── gmp-impl.h ├── gmp.h ├── grouping.c ├── grouping.h ├── groupingwc.c ├── inlines.c ├── isomac.c ├── jrand48.c ├── jrand48_r.c ├── l64a.c ├── labs.c ├── lcong48.c ├── lcong48_r.c ├── ldbl2mpn.c ├── ldiv.c ├── llabs.c ├── lldiv.c ├── longlong.h ├── lrand48.c ├── lrand48_r.c ├── lshift.c ├── makecontext.c ├── mblen.c ├── mbstowcs.c ├── mbtowc.c ├── mod_1.c ├── monetary.h ├── mp_clz_tab.c ├── mpn2dbl.c ├── mpn2flt.c ├── mpn2ldbl.c ├── mrand48.c ├── mrand48_r.c ├── msort.c ├── mul.c ├── mul_1.c ├── mul_n.c ├── nrand48.c ├── nrand48_r.c ├── old_atexit.c ├── on_exit.c ├── putenv.c ├── qsort.c ├── quick_exit.c ├── rand.c ├── rand_r.c ├── random.c ├── random_r.c ├── rpmatch.c ├── rshift.c ├── secure-getenv.c ├── seed48.c ├── seed48_r.c ├── setcontext.c ├── setenv.c ├── srand48.c ├── srand48_r.c ├── stdlib.h ├── strfmon.c ├── strfmon_l.c ├── strtod.c ├── strtod_l.c ├── strtof.c ├── strtof_l.c ├── strtoimax.c ├── strtol.c ├── strtol_l.c ├── strtold.c ├── strtold_l.c ├── strtoll.c ├── strtoll_l.c ├── strtoul.c ├── strtoul_l.c ├── strtoull.c ├── strtoull_l.c ├── strtoumax.c ├── sub_n.c ├── submul_1.c ├── swapcontext.c ├── sys │ └── errno.h ├── system.c ├── tens_in_limb.c ├── test-a64l.c ├── test-canon.c ├── test-canon2.c ├── testdiv.c ├── testdiv.input ├── testmb.c ├── testmb2.c ├── testrand.c ├── testsort.c ├── tst-atof1.c ├── tst-atof2.c ├── tst-bsearch.c ├── tst-environ.c ├── tst-fmtmsg.c ├── tst-fmtmsg.sh ├── tst-limits.c ├── tst-makecontext.c ├── tst-makecontext2.c ├── tst-makecontext3.c ├── tst-putenv.c ├── tst-putenvmod.c ├── tst-qsort.c ├── tst-qsort2.c ├── tst-rand48-2.c ├── tst-rand48.c ├── tst-random.c ├── tst-random2.c ├── tst-secure-getenv.c ├── tst-setcontext.c ├── tst-strtod-overflow.c ├── tst-strtod-round-data ├── tst-strtod-round.c ├── tst-strtod-underflow.c ├── tst-strtod.c ├── tst-strtod2.c ├── tst-strtod3.c ├── tst-strtod4.c ├── tst-strtod5.c ├── tst-strtod6.c ├── tst-strtol.c ├── tst-strtoll.c ├── tst-system.c ├── tst-tininess.c ├── tst-tls-atexit-lib.c ├── tst-tls-atexit.c ├── tst-unsetenv1.c ├── tst-xpg-basename.c ├── ucontext.h ├── udiv_qrnnd.c ├── wcstoimax.c ├── wcstombs.c ├── wcstoumax.c ├── wctomb.c └── xpg_basename.c ├── streams ├── Makefile ├── Versions ├── fattach.c ├── fdetach.c ├── getmsg.c ├── getpmsg.c ├── isastream.c ├── putmsg.c ├── putpmsg.c ├── stropts.h └── sys │ └── stropts.h ├── string ├── Depend ├── Makefile ├── Versions ├── _strerror.c ├── argz-addsep.c ├── argz-append.c ├── argz-count.c ├── argz-create.c ├── argz-ctsep.c ├── argz-delete.c ├── argz-extract.c ├── argz-insert.c ├── argz-next.c ├── argz-replace.c ├── argz-stringify.c ├── argz.h ├── basename.c ├── bcopy.c ├── bits │ ├── string2.h │ └── string3.h ├── bug-envz1.c ├── bug-strcoll1.c ├── bug-strncat1.c ├── bug-strpbrk1.c ├── bug-strspn1.c ├── bug-strtok1.c ├── byteswap.h ├── bzero.c ├── endian.h ├── envz.c ├── envz.h ├── ffs.c ├── ffsll.c ├── inl-tester.c ├── memccpy.c ├── memchr.c ├── memcmp.c ├── memcpy.c ├── memfrob.c ├── memmem.c ├── memmove.c ├── memory.h ├── mempcpy.c ├── memrchr.c ├── memset.c ├── noinl-tester.c ├── rawmemchr.c ├── stpcpy.c ├── stpncpy.c ├── str-two-way.h ├── stratcliff.c ├── strcasecmp.c ├── strcasecmp_l.c ├── strcasestr.c ├── strcat.c ├── strchr.c ├── strchrnul.c ├── strcmp.c ├── strcoll.c ├── strcoll_l.c ├── strcpy.c ├── strcspn.c ├── strdup.c ├── strerror.c ├── strerror_l.c ├── strfry.c ├── string-inlines.c ├── string.h ├── strings.h ├── strlen.c ├── strncase.c ├── strncase_l.c ├── strncat.c ├── strncmp.c ├── strncpy.c ├── strndup.c ├── strnlen.c ├── strpbrk.c ├── strrchr.c ├── strsep.c ├── strsignal.c ├── strspn.c ├── strstr.c ├── strtok.c ├── strtok_r.c ├── strverscmp.c ├── strxfrm.c ├── strxfrm_l.c ├── swab.c ├── test-bcopy-ifunc.c ├── test-bcopy.c ├── test-bzero-ifunc.c ├── test-bzero.c ├── test-ffs.c ├── test-memccpy-ifunc.c ├── test-memccpy.c ├── test-memchr-ifunc.c ├── test-memchr.c ├── test-memcmp-ifunc.c ├── test-memcmp.c ├── test-memcpy-ifunc.c ├── test-memcpy.c ├── test-memmem-ifunc.c ├── test-memmem.c ├── test-memmove-ifunc.c ├── test-memmove.c ├── test-mempcpy-ifunc.c ├── test-mempcpy.c ├── test-memset-ifunc.c ├── test-memset.c ├── test-rawmemchr-ifunc.c ├── test-rawmemchr.c ├── test-stpcpy-ifunc.c ├── test-stpcpy.c ├── test-stpncpy-ifunc.c ├── test-stpncpy.c ├── test-strcasecmp-ifunc.c ├── test-strcasecmp.c ├── test-strcasestr-ifunc.c ├── test-strcasestr.c ├── test-strcat-ifunc.c ├── test-strcat.c ├── test-strchr-ifunc.c ├── test-strchr.c ├── test-strchrnul-ifunc.c ├── test-strchrnul.c ├── test-strcmp-ifunc.c ├── test-strcmp.c ├── test-strcpy-ifunc.c ├── test-strcpy.c ├── test-strcspn-ifunc.c ├── test-strcspn.c ├── test-string.h ├── test-strlen-ifunc.c ├── test-strlen.c ├── test-strncasecmp-ifunc.c ├── test-strncasecmp.c ├── test-strncat-ifunc.c ├── test-strncat.c ├── test-strncmp-ifunc.c ├── test-strncmp.c ├── test-strncpy-ifunc.c ├── test-strncpy.c ├── test-strnlen-ifunc.c ├── test-strnlen.c ├── test-strpbrk-ifunc.c ├── test-strpbrk.c ├── test-strrchr-ifunc.c ├── test-strrchr.c ├── test-strspn-ifunc.c ├── test-strspn.c ├── test-strstr-ifunc.c ├── test-strstr.c ├── testcopy.c ├── tester.c ├── tst-bswap.c ├── tst-endian.c ├── tst-inlcall.c ├── tst-strfry.c ├── tst-strlen.c ├── tst-strtok.c ├── tst-strtok_r.c ├── tst-strxfrm.c ├── tst-strxfrm2.c ├── tst-svc.c ├── tst-svc.expect ├── tst-svc.input ├── tst-svc2.c ├── wordcopy.c └── xpg-strerror.c ├── sunrpc ├── Makefile ├── Versions ├── auth_des.c ├── auth_none.c ├── auth_unix.c ├── authdes_prot.c ├── authuxprot.c ├── bindrsvprt.c ├── clnt_gen.c ├── clnt_perr.c ├── clnt_raw.c ├── clnt_simp.c ├── clnt_tcp.c ├── clnt_udp.c ├── clnt_unix.c ├── create_xid.c ├── des_crypt.c ├── des_impl.c ├── des_soft.c ├── etc.rpc ├── get_myaddr.c ├── getrpcport.c ├── key_call.c ├── key_prot.c ├── netname.c ├── openchild.c ├── pm_getmaps.c ├── pm_getport.c ├── pmap_clnt.c ├── pmap_prot.c ├── pmap_prot2.c ├── pmap_rmt.c ├── proto.h ├── publickey.c ├── rpc │ ├── auth.h │ ├── auth_des.h │ ├── auth_unix.h │ ├── clnt.h │ ├── des_crypt.h │ ├── key_prot.h │ ├── netdb.h │ ├── pmap_clnt.h │ ├── pmap_prot.h │ ├── pmap_rmt.h │ ├── rpc.h │ ├── rpc_des.h │ ├── rpc_msg.h │ ├── svc.h │ ├── svc_auth.h │ ├── types.h │ └── xdr.h ├── rpc_clntout.c ├── rpc_cmsg.c ├── rpc_common.c ├── rpc_cout.c ├── rpc_dtable.c ├── rpc_hout.c ├── rpc_main.c ├── rpc_parse.c ├── rpc_parse.h ├── rpc_prot.c ├── rpc_sample.c ├── rpc_scan.c ├── rpc_scan.h ├── rpc_svcout.c ├── rpc_tblout.c ├── rpc_thread.c ├── rpc_util.c ├── rpc_util.h ├── rpcgen.c ├── rpcinfo.c ├── rpcsvc │ ├── bootparam.h │ ├── bootparam_prot.x │ ├── key_prot.x │ ├── klm_prot.x │ ├── mount.x │ ├── nfs_prot.x │ ├── nlm_prot.x │ ├── rex.x │ ├── rquota.x │ ├── rstat.x │ ├── rusers.x │ ├── sm_inter.x │ ├── spray.x │ └── yppasswd.x ├── rtime.c ├── svc.c ├── svc_auth.c ├── svc_authux.c ├── svc_raw.c ├── svc_run.c ├── svc_simple.c ├── svc_tcp.c ├── svc_udp.c ├── svc_unix.c ├── svcauth_des.c ├── thrsvc.c ├── tst-getmyaddr.c ├── tst-xdrmem.c ├── tst-xdrmem2.c ├── xcrypt.c ├── xdr.c ├── xdr_array.c ├── xdr_float.c ├── xdr_intXX_t.c ├── xdr_mem.c ├── xdr_rec.c ├── xdr_ref.c ├── xdr_sizeof.c └── xdr_stdio.c ├── sysdeps ├── generic │ ├── Makefile │ ├── _G_config.h │ ├── _itoa.h │ ├── a.out.h │ ├── abort-instr.h │ ├── aio_misc.h │ ├── allocalim.h │ ├── asm-syntax.h │ ├── bits │ │ └── hwcap.h │ ├── confstr.h │ ├── device-nrs.h │ ├── dirstream.h │ ├── dl-cache.h │ ├── dl-dtprocnum.h │ ├── dl-fptr.h │ ├── dl-hash.h │ ├── dl-irel.h │ ├── dl-librecon.h │ ├── dl-lookupcfg.h │ ├── dl-machine.h │ ├── dl-osinfo.h │ ├── dl-procinfo.c │ ├── dl-procinfo.h │ ├── dl-sysdep.h │ ├── dl-tls.h │ ├── dwarf2.h │ ├── eloop-threshold.h │ ├── entry.h │ ├── errqueue.h │ ├── fd_to_filename.h │ ├── fips-private.h │ ├── fork.h │ ├── fpu_control.h │ ├── frame.h │ ├── framestate.c │ ├── gccframe.h │ ├── get-rounding-mode.h │ ├── gmp-mparam.h │ ├── hp-timing.h │ ├── ifreq.h │ ├── ifunc-sel.h │ ├── intr-msg.h │ ├── inttypes.h │ ├── ldconfig.h │ ├── ldsodefs.h │ ├── libc-mmap.h │ ├── libcidn.abilist │ ├── libm-test-ulps │ ├── libnss_compat.abilist │ ├── libnss_db.abilist │ ├── libnss_dns.abilist │ ├── libnss_files.abilist │ ├── libnss_hesiod.abilist │ ├── libnss_nis.abilist │ ├── libnss_nisplus.abilist │ ├── local-setxid.h │ ├── localplt.data │ ├── machine-gmon.h │ ├── machine-lock.h │ ├── machine-sp.h │ ├── malloc-machine.h │ ├── malloc-sysdep.h │ ├── math-tests.h │ ├── math_ldbl.h │ ├── math_ldbl_opt.h │ ├── math_private.h │ ├── memcopy.h │ ├── memusage.h │ ├── net │ │ └── if.h │ ├── netinet │ │ ├── if_ether.h │ │ ├── in_systm.h │ │ ├── ip.h │ │ └── tcp.h │ ├── nfs │ │ └── nfs.h │ ├── not-cancel.h │ ├── nscd-types.h │ ├── pagecopy.h │ ├── paths.h │ ├── profil-counter.h │ ├── pty-private.h │ ├── register-dump.h │ ├── rtld-lowlevel.h │ ├── sigcontextinfo.h │ ├── siglist.h │ ├── sigset-cvt-mask.h │ ├── stackguard-macros.h │ ├── stackinfo.h │ ├── stdint.h │ ├── symbol-hacks.h │ ├── sys │ │ ├── ptrace.h │ │ ├── reboot.h │ │ ├── socketvar.h │ │ ├── swap.h │ │ ├── syscall.h │ │ ├── sysinfo.h │ │ ├── sysmacros.h │ │ ├── ttydefaults.h │ │ └── ucontext.h │ ├── sysdep-cancel.h │ ├── sysdep.h │ ├── testrtsig.h │ ├── thread_state.h │ ├── tininess.h │ ├── tls-macros.h │ ├── tls.h │ ├── tst-audit.h │ ├── tst-stack-align.h │ ├── unsecvars.h │ ├── unwind-dw2-fde-glibc.c │ ├── unwind-dw2-fde.c │ ├── unwind-dw2-fde.h │ ├── unwind-dw2.c │ ├── unwind-pe.c │ ├── unwind-pe.h │ ├── unwind.h │ └── utmp-equal.h ├── gnu │ ├── Makefile │ ├── bits │ │ ├── ipc.h │ │ ├── msq.h │ │ ├── sem.h │ │ ├── shm.h │ │ ├── utmp.h │ │ └── utmpx.h │ ├── configure │ ├── configure.in │ ├── errlist-compat.awk │ ├── errlist.awk │ ├── errlist.c │ ├── getutmp.c │ ├── getutmpx.c │ ├── glob64.c │ ├── ifaddrs.c │ ├── net │ │ └── if.h │ ├── netinet │ │ ├── ip_icmp.h │ │ ├── tcp.h │ │ └── udp.h │ ├── rt-unwind-resume.c │ ├── siglist.c │ ├── sys │ │ └── mtio.h │ ├── unwind-resume.c │ ├── updwtmp.c │ ├── utmp_file.c │ └── utmpx.h ├── i386 │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── ____longjmp_chk.S │ ├── __longjmp.S │ ├── abort-instr.h │ ├── add_n.S │ ├── addmul_1.S │ ├── asm-syntax.h │ ├── backtrace.c │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── bzero.c │ ├── configure │ ├── configure.in │ ├── crti.S │ ├── crtn.S │ ├── dl-irel.h │ ├── dl-lookupcfg.h │ ├── dl-machine.h │ ├── dl-procinfo.c │ ├── dl-procinfo.h │ ├── dl-tls.h │ ├── dl-tlsdesc.S │ ├── dl-tlsdesc.h │ ├── dl-trampoline.S │ ├── ffs.c │ ├── fpu │ │ ├── Implies │ │ ├── Versions │ │ ├── doasin.c │ │ ├── e_acos.S │ │ ├── e_acosf.S │ │ ├── e_acosh.S │ │ ├── e_acoshf.S │ │ ├── e_acoshl.S │ │ ├── e_acosl.c │ │ ├── e_asin.S │ │ ├── e_asinf.S │ │ ├── e_atan2.S │ │ ├── e_atan2f.S │ │ ├── e_atan2l.c │ │ ├── e_atanh.S │ │ ├── e_atanhf.S │ │ ├── e_atanhl.S │ │ ├── e_exp.S │ │ ├── e_exp10.S │ │ ├── e_exp10f.S │ │ ├── e_exp10l.S │ │ ├── e_exp2.S │ │ ├── e_exp2f.S │ │ ├── e_exp2l.S │ │ ├── e_expf.S │ │ ├── e_expl.S │ │ ├── e_fmod.S │ │ ├── e_fmodf.S │ │ ├── e_fmodl.c │ │ ├── e_hypot.S │ │ ├── e_hypotf.S │ │ ├── e_ilogb.S │ │ ├── e_ilogbf.S │ │ ├── e_ilogbl.S │ │ ├── e_log.S │ │ ├── e_log10.S │ │ ├── e_log10f.S │ │ ├── e_log10l.S │ │ ├── e_log2.S │ │ ├── e_log2f.S │ │ ├── e_log2l.S │ │ ├── e_logf.S │ │ ├── e_logl.S │ │ ├── e_pow.S │ │ ├── e_powf.S │ │ ├── e_powl.S │ │ ├── e_rem_pio2.c │ │ ├── e_remainder.S │ │ ├── e_remainderf.S │ │ ├── e_remainderl.S │ │ ├── e_scalb.S │ │ ├── e_scalbf.S │ │ ├── e_scalbl.S │ │ ├── e_sqrt.S │ │ ├── e_sqrtf.S │ │ ├── e_sqrtl.c │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fenv_private.h │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── halfulp.c │ │ ├── k_rem_pio2l.c │ │ ├── libm-test-ulps │ │ ├── math-tests.h │ │ ├── math_private.h │ │ ├── mpatan.c │ │ ├── mpatan2.c │ │ ├── mpexp.c │ │ ├── mplog.c │ │ ├── mpsqrt.c │ │ ├── s_asinh.S │ │ ├── s_asinhf.S │ │ ├── s_asinhl.S │ │ ├── s_atan.S │ │ ├── s_atanf.S │ │ ├── s_atanl.c │ │ ├── s_cbrt.S │ │ ├── s_cbrtf.S │ │ ├── s_cbrtl.S │ │ ├── s_ceil.S │ │ ├── s_ceilf.S │ │ ├── s_ceill.S │ │ ├── s_copysign.S │ │ ├── s_copysignf.S │ │ ├── s_copysignl.S │ │ ├── s_expm1.S │ │ ├── s_expm1f.S │ │ ├── s_expm1l.S │ │ ├── s_fabs.S │ │ ├── s_fabsf.S │ │ ├── s_fabsl.S │ │ ├── s_fdim.S │ │ ├── s_fdimf.S │ │ ├── s_fdiml.S │ │ ├── s_finite.S │ │ ├── s_finitef.S │ │ ├── s_finitel.S │ │ ├── s_floor.S │ │ ├── s_floorf.S │ │ ├── s_floorl.S │ │ ├── s_fmax.S │ │ ├── s_fmaxf.S │ │ ├── s_fmaxl.S │ │ ├── s_fmin.S │ │ ├── s_fminf.S │ │ ├── s_fminl.S │ │ ├── s_fpclassifyl.c │ │ ├── s_frexp.S │ │ ├── s_frexpf.S │ │ ├── s_frexpl.S │ │ ├── s_isinfl.c │ │ ├── s_isnanl.c │ │ ├── s_llrint.S │ │ ├── s_llrintf.S │ │ ├── s_llrintl.S │ │ ├── s_log1p.S │ │ ├── s_log1pf.S │ │ ├── s_log1pl.S │ │ ├── s_logb.S │ │ ├── s_logbf.S │ │ ├── s_logbl.c │ │ ├── s_lrint.S │ │ ├── s_lrintf.S │ │ ├── s_lrintl.S │ │ ├── s_nearbyint.S │ │ ├── s_nearbyintf.S │ │ ├── s_nearbyintl.S │ │ ├── s_nextafterl.c │ │ ├── s_nexttoward.c │ │ ├── s_nexttowardf.c │ │ ├── s_remquo.S │ │ ├── s_remquof.S │ │ ├── s_remquol.S │ │ ├── s_rint.S │ │ ├── s_rintf.S │ │ ├── s_rintl.c │ │ ├── s_scalbln.c │ │ ├── s_scalblnf.c │ │ ├── s_scalblnl.c │ │ ├── s_scalbn.S │ │ ├── s_scalbnf.S │ │ ├── s_scalbnl.S │ │ ├── s_significand.S │ │ ├── s_significandf.S │ │ ├── s_significandl.c │ │ ├── s_trunc.S │ │ ├── s_truncf.S │ │ ├── s_truncl.S │ │ ├── slowexp.c │ │ ├── slowpow.c │ │ └── t_exp.c │ ├── gccframe.h │ ├── gmp-mparam.h │ ├── htonl.S │ ├── htons.S │ ├── i386-mcount.S │ ├── i486 │ │ ├── Versions │ │ ├── bits │ │ │ └── atomic.h │ │ ├── htonl.S │ │ ├── strcat.S │ │ ├── string-inlines.c │ │ └── strlen.S │ ├── i586 │ │ ├── Implies │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── bzero.S │ │ ├── lshift.S │ │ ├── memcopy.h │ │ ├── memcpy.S │ │ ├── memcpy_chk.S │ │ ├── mempcpy.S │ │ ├── mempcpy_chk.S │ │ ├── memset.S │ │ ├── memset_chk.S │ │ ├── memusage.h │ │ ├── mul_1.S │ │ ├── rshift.S │ │ ├── stpcpy.S │ │ ├── strchr.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ ├── sub_n.S │ │ └── submul_1.S │ ├── i686 │ │ ├── Implies │ │ ├── Makefile │ │ ├── add_n.S │ │ ├── bcopy.S │ │ ├── bzero.S │ │ ├── cacheinfo.c │ │ ├── dl-hash.h │ │ ├── ffs.c │ │ ├── fpu │ │ │ ├── e_log.S │ │ │ ├── e_logf.S │ │ │ ├── e_logl.S │ │ │ ├── multiarch │ │ │ │ ├── Makefile │ │ │ │ ├── e_expf-ia32.S │ │ │ │ ├── e_expf-sse2.S │ │ │ │ ├── e_expf.c │ │ │ │ ├── s_cosf-sse2.S │ │ │ │ ├── s_cosf.c │ │ │ │ ├── s_sincosf-sse2.S │ │ │ │ ├── s_sincosf.c │ │ │ │ ├── s_sinf-sse2.S │ │ │ │ └── s_sinf.c │ │ │ ├── s_fdim.S │ │ │ ├── s_fdimf.S │ │ │ ├── s_fdiml.S │ │ │ ├── s_fmax.S │ │ │ ├── s_fmaxf.S │ │ │ ├── s_fmaxl.S │ │ │ ├── s_fmin.S │ │ │ ├── s_fminf.S │ │ │ └── s_fminl.S │ │ ├── hp-timing.c │ │ ├── hp-timing.h │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memcpy_chk.S │ │ ├── memmove.S │ │ ├── memmove_chk.S │ │ ├── mempcpy.S │ │ ├── mempcpy_chk.S │ │ ├── memset.S │ │ ├── memset_chk.S │ │ ├── memusage.h │ │ ├── multiarch │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── bcopy-ssse3-rep.S │ │ │ ├── bcopy-ssse3.S │ │ │ ├── bcopy.S │ │ │ ├── bzero-sse2-rep.S │ │ │ ├── bzero-sse2.S │ │ │ ├── bzero.S │ │ │ ├── ifunc-defines.sym │ │ │ ├── ifunc-impl-list.c │ │ │ ├── init-arch.c │ │ │ ├── init-arch.h │ │ │ ├── locale-defines.sym │ │ │ ├── memchr-sse2-bsf.S │ │ │ ├── memchr-sse2.S │ │ │ ├── memchr.S │ │ │ ├── memcmp-sse4.S │ │ │ ├── memcmp-ssse3.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy-ssse3-rep.S │ │ │ ├── memcpy-ssse3.S │ │ │ ├── memcpy.S │ │ │ ├── memcpy_chk.S │ │ │ ├── memmove-ssse3-rep.S │ │ │ ├── memmove-ssse3.S │ │ │ ├── memmove.S │ │ │ ├── memmove_chk.S │ │ │ ├── mempcpy-ssse3-rep.S │ │ │ ├── mempcpy-ssse3.S │ │ │ ├── mempcpy.S │ │ │ ├── mempcpy_chk.S │ │ │ ├── memrchr-c.c │ │ │ ├── memrchr-sse2-bsf.S │ │ │ ├── memrchr-sse2.S │ │ │ ├── memrchr.S │ │ │ ├── memset-sse2-rep.S │ │ │ ├── memset-sse2.S │ │ │ ├── memset.S │ │ │ ├── memset_chk.S │ │ │ ├── rawmemchr-sse2-bsf.S │ │ │ ├── rawmemchr-sse2.S │ │ │ ├── rawmemchr.S │ │ │ ├── rtld-strnlen.c │ │ │ ├── s_fma-fma.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmaf-fma.c │ │ │ ├── s_fmaf.c │ │ │ ├── sched_cpucount.c │ │ │ ├── stpcpy-sse2.S │ │ │ ├── stpcpy-ssse3.S │ │ │ ├── stpcpy.S │ │ │ ├── stpncpy-sse2.S │ │ │ ├── stpncpy-ssse3.S │ │ │ ├── stpncpy.S │ │ │ ├── strcasecmp-c.c │ │ │ ├── strcasecmp.S │ │ │ ├── strcasecmp_l-c.c │ │ │ ├── strcasecmp_l-sse4.S │ │ │ ├── strcasecmp_l-ssse3.S │ │ │ ├── strcasecmp_l.S │ │ │ ├── strcasestr-c.c │ │ │ ├── strcasestr-nonascii.c │ │ │ ├── strcasestr.c │ │ │ ├── strcat-sse2.S │ │ │ ├── strcat-ssse3.S │ │ │ ├── strcat.S │ │ │ ├── strchr-sse2-bsf.S │ │ │ ├── strchr-sse2.S │ │ │ ├── strchr.S │ │ │ ├── strcmp-sse4.S │ │ │ ├── strcmp-ssse3.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy-sse2.S │ │ │ ├── strcpy-ssse3.S │ │ │ ├── strcpy.S │ │ │ ├── strcspn-c.c │ │ │ ├── strcspn.S │ │ │ ├── strlen-sse2-bsf.S │ │ │ ├── strlen-sse2.S │ │ │ ├── strlen.S │ │ │ ├── strncase-c.c │ │ │ ├── strncase.S │ │ │ ├── strncase_l-c.c │ │ │ ├── strncase_l-sse4.S │ │ │ ├── strncase_l-ssse3.S │ │ │ ├── strncase_l.S │ │ │ ├── strncat-c.c │ │ │ ├── strncat-sse2.S │ │ │ ├── strncat-ssse3.S │ │ │ ├── strncat.S │ │ │ ├── strncmp-c.c │ │ │ ├── strncmp-sse4.S │ │ │ ├── strncmp-ssse3.S │ │ │ ├── strncmp.S │ │ │ ├── strncpy-c.c │ │ │ ├── strncpy-sse2.S │ │ │ ├── strncpy-ssse3.S │ │ │ ├── strncpy.S │ │ │ ├── strnlen-c.c │ │ │ ├── strnlen-sse2.S │ │ │ ├── strnlen.S │ │ │ ├── strpbrk-c.c │ │ │ ├── strpbrk.S │ │ │ ├── strrchr-sse2-bsf.S │ │ │ ├── strrchr-sse2.S │ │ │ ├── strrchr.S │ │ │ ├── strspn-c.c │ │ │ ├── strspn.S │ │ │ ├── strstr-c.c │ │ │ ├── strstr.c │ │ │ ├── test-multiarch.c │ │ │ ├── varshift.c │ │ │ ├── varshift.h │ │ │ ├── wcschr-c.c │ │ │ ├── wcschr-sse2.S │ │ │ ├── wcschr.S │ │ │ ├── wcscmp-c.c │ │ │ ├── wcscmp-sse2.S │ │ │ ├── wcscmp.S │ │ │ ├── wcscpy-c.c │ │ │ ├── wcscpy-ssse3.S │ │ │ ├── wcscpy.S │ │ │ ├── wcslen-c.c │ │ │ ├── wcslen-sse2.S │ │ │ ├── wcslen.S │ │ │ ├── wcsrchr-c.c │ │ │ ├── wcsrchr-sse2.S │ │ │ ├── wcsrchr.S │ │ │ ├── wmemcmp-c.c │ │ │ ├── wmemcmp-sse4.S │ │ │ ├── wmemcmp-ssse3.S │ │ │ └── wmemcmp.S │ │ ├── strcmp.S │ │ ├── strtok.S │ │ ├── strtok_r.S │ │ └── tst-stack-align.h │ ├── i786 │ │ └── Implies │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldbl2mpn.c │ ├── ldsodefs.h │ ├── lshift.S │ ├── machine-gmon.h │ ├── memchr.S │ ├── memcmp.S │ ├── memcopy.h │ ├── memset.c │ ├── memusage.h │ ├── mp_clz_tab.c │ ├── mul_1.S │ ├── rawmemchr.S │ ├── rshift.S │ ├── setfpucw.c │ ├── setjmp.S │ ├── stackguard-macros.h │ ├── stackinfo.h │ ├── start.S │ ├── stpcpy.S │ ├── stpncpy.S │ ├── strchr.S │ ├── strchrnul.S │ ├── strcspn.S │ ├── string-inlines.c │ ├── strlen.c │ ├── strpbrk.S │ ├── strrchr.S │ ├── strspn.S │ ├── strtok.S │ ├── strtok_r.S │ ├── sub_n.S │ ├── submul_1.S │ ├── sys │ │ └── ucontext.h │ ├── sysdep.h │ ├── tls-macros.h │ ├── tlsdesc.c │ ├── tlsdesc.sym │ ├── tst-audit.h │ └── tst-stack-align.h ├── ieee754 │ ├── Makefile │ ├── bits │ │ ├── huge_val.h │ │ ├── huge_valf.h │ │ ├── inf.h │ │ └── nan.h │ ├── dbl-64 │ │ ├── Makefile │ │ ├── MathLib.h │ │ ├── asincos.tbl │ │ ├── atnat.h │ │ ├── atnat2.h │ │ ├── branred.c │ │ ├── branred.h │ │ ├── dbl2mpn.c │ │ ├── dla.h │ │ ├── doasin.c │ │ ├── doasin.h │ │ ├── dosincos.c │ │ ├── dosincos.h │ │ ├── e_acos.c │ │ ├── e_acosh.c │ │ ├── e_asin.c │ │ ├── e_atan2.c │ │ ├── e_atanh.c │ │ ├── e_cosh.c │ │ ├── e_exp.c │ │ ├── e_exp10.c │ │ ├── e_exp2.c │ │ ├── e_fmod.c │ │ ├── e_gamma_r.c │ │ ├── e_hypot.c │ │ ├── e_ilogb.c │ │ ├── e_j0.c │ │ ├── e_j1.c │ │ ├── e_jn.c │ │ ├── e_lgamma_r.c │ │ ├── e_log.c │ │ ├── e_log10.c │ │ ├── e_log2.c │ │ ├── e_pow.c │ │ ├── e_rem_pio2.c │ │ ├── e_remainder.c │ │ ├── e_sinh.c │ │ ├── e_sqrt.c │ │ ├── gamma_product.c │ │ ├── gamma_productf.c │ │ ├── halfulp.c │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── k_tan.c │ │ ├── mpa-arch.h │ │ ├── mpa.c │ │ ├── mpa.h │ │ ├── mpatan.c │ │ ├── mpatan.h │ │ ├── mpatan2.c │ │ ├── mpexp.c │ │ ├── mplog.c │ │ ├── mpn2dbl.c │ │ ├── mpsqrt.c │ │ ├── mpsqrt.h │ │ ├── mptan.c │ │ ├── mydefs.h │ │ ├── powtwo.tbl │ │ ├── root.tbl │ │ ├── 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_finite.c │ │ ├── s_floor.c │ │ ├── s_fma.c │ │ ├── s_fmaf.c │ │ ├── s_fpclassify.c │ │ ├── s_frexp.c │ │ ├── s_isinf.c │ │ ├── s_isinf_ns.c │ │ ├── s_isnan.c │ │ ├── s_issignaling.c │ │ ├── s_llrint.c │ │ ├── s_llround.c │ │ ├── s_log1p.c │ │ ├── s_logb.c │ │ ├── s_lrint.c │ │ ├── s_lround.c │ │ ├── s_modf.c │ │ ├── s_nearbyint.c │ │ ├── s_nexttoward.c │ │ ├── s_remquo.c │ │ ├── s_rint.c │ │ ├── s_round.c │ │ ├── s_scalbln.c │ │ ├── s_scalbn.c │ │ ├── s_signbit.c │ │ ├── s_sin.c │ │ ├── s_sincos.c │ │ ├── s_tan.c │ │ ├── s_tanh.c │ │ ├── s_trunc.c │ │ ├── sincos32.c │ │ ├── sincos32.h │ │ ├── sincostab.c │ │ ├── slowexp.c │ │ ├── slowpow.c │ │ ├── t_exp.c │ │ ├── t_exp2.h │ │ ├── uasncs.h │ │ ├── uatan.tbl │ │ ├── uexp.h │ │ ├── uexp.tbl │ │ ├── ulog.h │ │ ├── ulog.tbl │ │ ├── upow.h │ │ ├── upow.tbl │ │ ├── urem.h │ │ ├── uroot.h │ │ ├── usncs.h │ │ ├── utan.h │ │ ├── utan.tbl │ │ ├── w_exp.c │ │ ├── wordsize-64 │ │ │ ├── e_acosh.c │ │ │ ├── e_cosh.c │ │ │ ├── e_fmod.c │ │ │ ├── e_log10.c │ │ │ ├── e_log2.c │ │ │ ├── math_private.h │ │ │ ├── s_ceil.c │ │ │ ├── s_finite.c │ │ │ ├── s_floor.c │ │ │ ├── s_frexp.c │ │ │ ├── s_isinf.c │ │ │ ├── s_isinf_ns.c │ │ │ ├── s_isnan.c │ │ │ ├── s_issignaling.c │ │ │ ├── s_llround.c │ │ │ ├── s_logb.c │ │ │ ├── s_lround.c │ │ │ ├── s_modf.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_remquo.c │ │ │ ├── s_rint.c │ │ │ ├── s_round.c │ │ │ ├── s_scalbln.c │ │ │ ├── s_scalbn.c │ │ │ └── s_trunc.c │ │ ├── x2y2m1.c │ │ └── x2y2m1f.c │ ├── flt-32 │ │ ├── e_acosf.c │ │ ├── e_acoshf.c │ │ ├── e_asinf.c │ │ ├── e_atan2f.c │ │ ├── e_atanhf.c │ │ ├── e_coshf.c │ │ ├── e_exp2f.c │ │ ├── e_expf.c │ │ ├── e_fmodf.c │ │ ├── e_gammaf_r.c │ │ ├── e_hypotf.c │ │ ├── e_ilogbf.c │ │ ├── e_j0f.c │ │ ├── e_j1f.c │ │ ├── e_jnf.c │ │ ├── e_lgammaf_r.c │ │ ├── e_log10f.c │ │ ├── e_log2f.c │ │ ├── e_logf.c │ │ ├── e_powf.c │ │ ├── e_rem_pio2f.c │ │ ├── e_remainderf.c │ │ ├── e_sinhf.c │ │ ├── e_sqrtf.c │ │ ├── k_cosf.c │ │ ├── k_rem_pio2f.c │ │ ├── k_sinf.c │ │ ├── k_tanf.c │ │ ├── math_private.h │ │ ├── mpn2flt.c │ │ ├── s_asinhf.c │ │ ├── s_atanf.c │ │ ├── s_cbrtf.c │ │ ├── s_ceilf.c │ │ ├── s_copysignf.c │ │ ├── s_cosf.c │ │ ├── s_erff.c │ │ ├── s_expm1f.c │ │ ├── s_fabsf.c │ │ ├── s_finitef.c │ │ ├── s_floorf.c │ │ ├── s_fpclassifyf.c │ │ ├── s_frexpf.c │ │ ├── s_isinf_nsf.c │ │ ├── s_isinff.c │ │ ├── s_isnanf.c │ │ ├── s_issignalingf.c │ │ ├── s_llrintf.c │ │ ├── s_llroundf.c │ │ ├── s_log1pf.c │ │ ├── s_logbf.c │ │ ├── s_lrintf.c │ │ ├── s_lroundf.c │ │ ├── s_modff.c │ │ ├── s_nearbyintf.c │ │ ├── s_nextafterf.c │ │ ├── s_remquof.c │ │ ├── s_rintf.c │ │ ├── s_roundf.c │ │ ├── s_scalblnf.c │ │ ├── s_scalbnf.c │ │ ├── s_signbitf.c │ │ ├── s_sincosf.c │ │ ├── s_sinf.c │ │ ├── s_tanf.c │ │ ├── s_tanhf.c │ │ ├── s_truncf.c │ │ ├── t_exp2f.h │ │ └── w_expf.c │ ├── ieee754.h │ ├── k_standard.c │ ├── ldbl-128 │ │ ├── Makefile │ │ ├── e_acoshl.c │ │ ├── e_acosl.c │ │ ├── e_asinl.c │ │ ├── e_atan2l.c │ │ ├── e_atanhl.c │ │ ├── e_coshl.c │ │ ├── e_exp10l.c │ │ ├── e_expl.c │ │ ├── e_fmodl.c │ │ ├── e_gammal_r.c │ │ ├── e_hypotl.c │ │ ├── e_ilogbl.c │ │ ├── e_j0l.c │ │ ├── e_j1l.c │ │ ├── e_jnl.c │ │ ├── e_lgammal_r.c │ │ ├── e_log10l.c │ │ ├── e_log2l.c │ │ ├── e_logl.c │ │ ├── e_powl.c │ │ ├── e_rem_pio2l.c │ │ ├── e_remainderl.c │ │ ├── e_sinhl.c │ │ ├── gamma_productl.c │ │ ├── ieee754.h │ │ ├── k_cosl.c │ │ ├── k_sincosl.c │ │ ├── k_sinl.c │ │ ├── k_tanl.c │ │ ├── ldbl2mpn.c │ │ ├── math_ldbl.h │ │ ├── mpn2ldbl.c │ │ ├── printf_fphex.c │ │ ├── s_asinhl.c │ │ ├── s_atanl.c │ │ ├── s_cbrtl.c │ │ ├── s_ceill.c │ │ ├── s_copysignl.c │ │ ├── s_cosl.c │ │ ├── s_erfl.c │ │ ├── s_expm1l.c │ │ ├── s_fabsl.c │ │ ├── s_finitel.c │ │ ├── s_floorl.c │ │ ├── s_fma.c │ │ ├── s_fmal.c │ │ ├── s_fpclassifyl.c │ │ ├── s_frexpl.c │ │ ├── s_isinf_nsl.c │ │ ├── s_isinfl.c │ │ ├── s_isnanl.c │ │ ├── s_issignalingl.c │ │ ├── s_llrintl.c │ │ ├── s_llroundl.c │ │ ├── s_log1pl.c │ │ ├── s_logbl.c │ │ ├── s_lrintl.c │ │ ├── s_lroundl.c │ │ ├── s_modfl.c │ │ ├── s_nearbyintl.c │ │ ├── s_nextafterl.c │ │ ├── s_nexttoward.c │ │ ├── s_nexttowardf.c │ │ ├── s_remquol.c │ │ ├── s_rintl.c │ │ ├── s_roundl.c │ │ ├── s_scalblnl.c │ │ ├── s_scalbnl.c │ │ ├── s_signbitl.c │ │ ├── s_sincosl.c │ │ ├── s_sinl.c │ │ ├── s_tanhl.c │ │ ├── s_tanl.c │ │ ├── s_truncl.c │ │ ├── strtold_l.c │ │ ├── t_expl.h │ │ ├── t_sincosl.c │ │ ├── w_expl.c │ │ └── x2y2m1l.c │ ├── ldbl-128ibm │ │ ├── Makefile │ │ ├── e_acoshl.c │ │ ├── e_acosl.c │ │ ├── e_asinl.c │ │ ├── e_atan2l.c │ │ ├── e_atanhl.c │ │ ├── e_coshl.c │ │ ├── e_exp10l.c │ │ ├── e_expl.c │ │ ├── e_fmodl.c │ │ ├── e_gammal_r.c │ │ ├── e_hypotl.c │ │ ├── e_ilogbl.c │ │ ├── e_j0l.c │ │ ├── e_j1l.c │ │ ├── e_jnl.c │ │ ├── e_lgammal_r.c │ │ ├── e_log10l.c │ │ ├── e_log2l.c │ │ ├── e_logl.c │ │ ├── e_powl.c │ │ ├── e_rem_pio2l.c │ │ ├── e_remainderl.c │ │ ├── e_sinhl.c │ │ ├── e_sqrtl.c │ │ ├── gamma_productl.c │ │ ├── ieee754.h │ │ ├── k_cosl.c │ │ ├── k_sincosl.c │ │ ├── k_sinl.c │ │ ├── k_tanl.c │ │ ├── ldbl2mpn.c │ │ ├── math_ldbl.h │ │ ├── mpn2ldbl.c │ │ ├── printf_fphex.c │ │ ├── s_asinhl.c │ │ ├── s_atanl.c │ │ ├── s_cbrtl.c │ │ ├── s_ceill.c │ │ ├── s_copysignl.c │ │ ├── s_cosl.c │ │ ├── s_cprojl.c │ │ ├── s_ctanhl.c │ │ ├── s_ctanl.c │ │ ├── s_erfl.c │ │ ├── s_expm1l.c │ │ ├── s_fabsl.c │ │ ├── s_finitel.c │ │ ├── s_floorl.c │ │ ├── s_fmal.c │ │ ├── s_fpclassifyl.c │ │ ├── s_frexpl.c │ │ ├── s_isinf_nsl.c │ │ ├── s_isinfl.c │ │ ├── s_isnanl.c │ │ ├── s_issignalingl.c │ │ ├── s_llrintl.c │ │ ├── s_llroundl.c │ │ ├── s_log1pl.c │ │ ├── s_logbl.c │ │ ├── s_lrintl.c │ │ ├── s_lroundl.c │ │ ├── s_modfl.c │ │ ├── s_nearbyintl.c │ │ ├── s_nextafterl.c │ │ ├── s_nexttoward.c │ │ ├── s_nexttowardf.c │ │ ├── s_remquol.c │ │ ├── s_rintl.c │ │ ├── s_roundl.c │ │ ├── s_scalblnl.c │ │ ├── s_scalbnl.c │ │ ├── s_signbitl.c │ │ ├── s_sincosl.c │ │ ├── s_sinl.c │ │ ├── s_tanhl.c │ │ ├── s_tanl.c │ │ ├── s_truncl.c │ │ ├── strtold_l.c │ │ ├── t_sincosl.c │ │ ├── w_expl.c │ │ └── x2y2m1l.c │ ├── ldbl-64-128 │ │ ├── e_ilogbl.c │ │ ├── s_asinhl.c │ │ ├── s_atanl.c │ │ ├── s_cbrtl.c │ │ ├── s_ceill.c │ │ ├── s_copysignl.c │ │ ├── s_cosl.c │ │ ├── s_erfl.c │ │ ├── s_expm1l.c │ │ ├── s_fabsl.c │ │ ├── s_finitel.c │ │ ├── s_floorl.c │ │ ├── s_fmal.c │ │ ├── s_fpclassifyl.c │ │ ├── s_frexpl.c │ │ ├── s_isinfl.c │ │ ├── s_isnanl.c │ │ ├── s_llrintl.c │ │ ├── s_llroundl.c │ │ ├── s_log1pl.c │ │ ├── s_logbl.c │ │ ├── s_lrintl.c │ │ ├── s_lroundl.c │ │ ├── s_modfl.c │ │ ├── s_nearbyintl.c │ │ ├── s_nextafterl.c │ │ ├── s_nexttoward.c │ │ ├── s_nexttowardf.c │ │ ├── s_remquol.c │ │ ├── s_rintl.c │ │ ├── s_roundl.c │ │ ├── s_scalblnl.c │ │ ├── s_scalbnl.c │ │ ├── s_signbitl.c │ │ ├── s_sincosl.c │ │ ├── s_sinl.c │ │ ├── s_tanhl.c │ │ ├── s_tanl.c │ │ ├── s_truncl.c │ │ ├── strtold_l.c │ │ └── w_expl.c │ ├── ldbl-96 │ │ ├── e_acoshl.c │ │ ├── e_asinl.c │ │ ├── e_atan2l.c │ │ ├── e_atanhl.c │ │ ├── e_coshl.c │ │ ├── e_gammal_r.c │ │ ├── e_hypotl.c │ │ ├── e_ilogbl.c │ │ ├── e_j0l.c │ │ ├── e_j1l.c │ │ ├── e_jnl.c │ │ ├── e_lgammal_r.c │ │ ├── e_rem_pio2l.c │ │ ├── e_remainderl.c │ │ ├── e_sinhl.c │ │ ├── gamma_product.c │ │ ├── gamma_productl.c │ │ ├── k_cosl.c │ │ ├── k_sinl.c │ │ ├── k_tanl.c │ │ ├── ldbl2mpn.c │ │ ├── math_ldbl.h │ │ ├── mpn2ldbl.c │ │ ├── printf_fphex.c │ │ ├── s_asinhl.c │ │ ├── s_cbrtl.c │ │ ├── s_ceill.c │ │ ├── s_copysignl.c │ │ ├── s_cosl.c │ │ ├── s_erfl.c │ │ ├── s_fabsl.c │ │ ├── s_finitel.c │ │ ├── s_floorl.c │ │ ├── s_fma.c │ │ ├── s_fmal.c │ │ ├── s_fpclassifyl.c │ │ ├── s_frexpl.c │ │ ├── s_isinf_nsl.c │ │ ├── s_isinfl.c │ │ ├── s_isnanl.c │ │ ├── s_issignalingl.c │ │ ├── s_llrintl.c │ │ ├── s_llroundl.c │ │ ├── s_logbl.c │ │ ├── s_lrintl.c │ │ ├── s_lroundl.c │ │ ├── s_modfl.c │ │ ├── s_nearbyintl.c │ │ ├── s_nextafterl.c │ │ ├── s_nexttoward.c │ │ ├── s_nexttowardf.c │ │ ├── s_remquol.c │ │ ├── s_rintl.c │ │ ├── s_roundl.c │ │ ├── s_scalblnl.c │ │ ├── s_scalbnl.c │ │ ├── s_signbitl.c │ │ ├── s_sincosl.c │ │ ├── s_sinl.c │ │ ├── s_tanhl.c │ │ ├── s_tanl.c │ │ ├── s_truncl.c │ │ ├── strtold_l.c │ │ ├── t_sincosl.c │ │ ├── w_expl.c │ │ ├── x2y2m1.c │ │ └── x2y2m1l.c │ ├── ldbl-opt │ │ ├── Makefile │ │ ├── Versions │ │ ├── cabs.c │ │ ├── cabsl.c │ │ ├── carg.c │ │ ├── cargl.c │ │ ├── cimag.c │ │ ├── cimagl.c │ │ ├── configure │ │ ├── configure.in │ │ ├── conj.c │ │ ├── conjl.c │ │ ├── creal.c │ │ ├── creall.c │ │ ├── math_ldbl_opt.c │ │ ├── math_ldbl_opt.h │ │ ├── nldbl-acos.c │ │ ├── nldbl-acosh.c │ │ ├── nldbl-asin.c │ │ ├── nldbl-asinh.c │ │ ├── nldbl-asprintf.c │ │ ├── nldbl-asprintf_chk.c │ │ ├── nldbl-atan.c │ │ ├── nldbl-atan2.c │ │ ├── nldbl-atanh.c │ │ ├── nldbl-cabs.c │ │ ├── nldbl-cacos.c │ │ ├── nldbl-cacosh.c │ │ ├── nldbl-carg.c │ │ ├── nldbl-casin.c │ │ ├── nldbl-casinh.c │ │ ├── nldbl-catan.c │ │ ├── nldbl-catanh.c │ │ ├── nldbl-cbrt.c │ │ ├── nldbl-ccos.c │ │ ├── nldbl-ccosh.c │ │ ├── nldbl-ceil.c │ │ ├── nldbl-cexp.c │ │ ├── nldbl-cimag.c │ │ ├── nldbl-clog.c │ │ ├── nldbl-clog10.c │ │ ├── nldbl-compat.c │ │ ├── nldbl-compat.h │ │ ├── nldbl-conj.c │ │ ├── nldbl-copysign.c │ │ ├── nldbl-cos.c │ │ ├── nldbl-cosh.c │ │ ├── nldbl-cpow.c │ │ ├── nldbl-cproj.c │ │ ├── nldbl-creal.c │ │ ├── nldbl-csin.c │ │ ├── nldbl-csinh.c │ │ ├── nldbl-csqrt.c │ │ ├── nldbl-ctan.c │ │ ├── nldbl-ctanh.c │ │ ├── nldbl-dprintf.c │ │ ├── nldbl-dprintf_chk.c │ │ ├── nldbl-drem.c │ │ ├── nldbl-erf.c │ │ ├── nldbl-erfc.c │ │ ├── nldbl-exp.c │ │ ├── nldbl-exp10.c │ │ ├── nldbl-exp2.c │ │ ├── nldbl-expm1.c │ │ ├── nldbl-fabs.c │ │ ├── nldbl-fdim.c │ │ ├── nldbl-finite.c │ │ ├── nldbl-floor.c │ │ ├── nldbl-fma.c │ │ ├── nldbl-fmax.c │ │ ├── nldbl-fmin.c │ │ ├── nldbl-fmod.c │ │ ├── nldbl-fprintf.c │ │ ├── nldbl-fprintf_chk.c │ │ ├── nldbl-frexp.c │ │ ├── nldbl-fscanf.c │ │ ├── nldbl-fwprintf.c │ │ ├── nldbl-fwprintf_chk.c │ │ ├── nldbl-fwscanf.c │ │ ├── nldbl-gamma.c │ │ ├── nldbl-hypot.c │ │ ├── nldbl-ilogb.c │ │ ├── nldbl-iovfscanf.c │ │ ├── nldbl-isinf.c │ │ ├── nldbl-isnan.c │ │ ├── nldbl-isoc99_fscanf.c │ │ ├── nldbl-isoc99_fwscanf.c │ │ ├── nldbl-isoc99_scanf.c │ │ ├── nldbl-isoc99_sscanf.c │ │ ├── nldbl-isoc99_swscanf.c │ │ ├── nldbl-isoc99_vfscanf.c │ │ ├── nldbl-isoc99_vfwscanf.c │ │ ├── nldbl-isoc99_vscanf.c │ │ ├── nldbl-isoc99_vsscanf.c │ │ ├── nldbl-isoc99_vswscanf.c │ │ ├── nldbl-isoc99_vwscanf.c │ │ ├── nldbl-isoc99_wscanf.c │ │ ├── nldbl-j0.c │ │ ├── nldbl-j1.c │ │ ├── nldbl-jn.c │ │ ├── nldbl-ldexp.c │ │ ├── nldbl-lgamma.c │ │ ├── nldbl-lgamma_r.c │ │ ├── nldbl-llrint.c │ │ ├── nldbl-llround.c │ │ ├── nldbl-log.c │ │ ├── nldbl-log10.c │ │ ├── nldbl-log1p.c │ │ ├── nldbl-log2.c │ │ ├── nldbl-logb.c │ │ ├── nldbl-lrint.c │ │ ├── nldbl-lround.c │ │ ├── nldbl-modf.c │ │ ├── nldbl-nan.c │ │ ├── nldbl-nearbyint.c │ │ ├── nldbl-nextafter.c │ │ ├── nldbl-nexttoward.c │ │ ├── nldbl-nexttowardf.c │ │ ├── nldbl-obstack_printf.c │ │ ├── nldbl-obstack_printf_chk.c │ │ ├── nldbl-obstack_vprintf.c │ │ ├── nldbl-obstack_vprintf_chk.c │ │ ├── nldbl-pow.c │ │ ├── nldbl-pow10.c │ │ ├── nldbl-printf.c │ │ ├── nldbl-printf_chk.c │ │ ├── nldbl-printf_fp.c │ │ ├── nldbl-printf_size.c │ │ ├── nldbl-qecvt.c │ │ ├── nldbl-qecvt_r.c │ │ ├── nldbl-qfcvt.c │ │ ├── nldbl-qfcvt_r.c │ │ ├── nldbl-qgcvt.c │ │ ├── nldbl-remainder.c │ │ ├── nldbl-remquo.c │ │ ├── nldbl-rint.c │ │ ├── nldbl-round.c │ │ ├── nldbl-scalb.c │ │ ├── nldbl-scalbln.c │ │ ├── nldbl-scalbn.c │ │ ├── nldbl-scanf.c │ │ ├── nldbl-signbit.c │ │ ├── nldbl-significand.c │ │ ├── nldbl-sin.c │ │ ├── nldbl-sincos.c │ │ ├── nldbl-sinh.c │ │ ├── nldbl-snprintf.c │ │ ├── nldbl-snprintf_chk.c │ │ ├── nldbl-sprintf.c │ │ ├── nldbl-sprintf_chk.c │ │ ├── nldbl-sqrt.c │ │ ├── nldbl-sscanf.c │ │ ├── nldbl-strfmon.c │ │ ├── nldbl-strfmon_l.c │ │ ├── nldbl-strtold.c │ │ ├── nldbl-strtold_l.c │ │ ├── nldbl-strtoldint.c │ │ ├── nldbl-swprintf.c │ │ ├── nldbl-swprintf_chk.c │ │ ├── nldbl-swscanf.c │ │ ├── nldbl-syslog.c │ │ ├── nldbl-syslog_chk.c │ │ ├── nldbl-tan.c │ │ ├── nldbl-tanh.c │ │ ├── nldbl-tgamma.c │ │ ├── nldbl-trunc.c │ │ ├── nldbl-vasprintf.c │ │ ├── nldbl-vasprintf_chk.c │ │ ├── nldbl-vdprintf.c │ │ ├── nldbl-vdprintf_chk.c │ │ ├── nldbl-vfprintf.c │ │ ├── nldbl-vfprintf_chk.c │ │ ├── nldbl-vfscanf.c │ │ ├── nldbl-vfwprintf.c │ │ ├── nldbl-vfwprintf_chk.c │ │ ├── nldbl-vfwscanf.c │ │ ├── nldbl-vprintf.c │ │ ├── nldbl-vprintf_chk.c │ │ ├── nldbl-vscanf.c │ │ ├── nldbl-vsnprintf.c │ │ ├── nldbl-vsnprintf_chk.c │ │ ├── nldbl-vsprintf.c │ │ ├── nldbl-vsprintf_chk.c │ │ ├── nldbl-vsscanf.c │ │ ├── nldbl-vswprintf.c │ │ ├── nldbl-vswprintf_chk.c │ │ ├── nldbl-vswscanf.c │ │ ├── nldbl-vsyslog.c │ │ ├── nldbl-vsyslog_chk.c │ │ ├── nldbl-vwprintf.c │ │ ├── nldbl-vwprintf_chk.c │ │ ├── nldbl-vwscanf.c │ │ ├── nldbl-wcstold.c │ │ ├── nldbl-wcstold_l.c │ │ ├── nldbl-wcstoldint.c │ │ ├── nldbl-wprintf.c │ │ ├── nldbl-wprintf_chk.c │ │ ├── nldbl-wscanf.c │ │ ├── nldbl-y0.c │ │ ├── nldbl-y1.c │ │ ├── nldbl-yn.c │ │ ├── s_asinh.c │ │ ├── s_atan.c │ │ ├── s_cacos.c │ │ ├── s_cacosh.c │ │ ├── s_cacoshl.c │ │ ├── s_cacosl.c │ │ ├── s_casin.c │ │ ├── s_casinh.c │ │ ├── s_casinhl.c │ │ ├── s_casinl.c │ │ ├── s_catan.c │ │ ├── s_catanh.c │ │ ├── s_catanhl.c │ │ ├── s_catanl.c │ │ ├── s_cbrt.c │ │ ├── s_ccos.c │ │ ├── s_ccosh.c │ │ ├── s_ccoshl.c │ │ ├── s_ccosl.c │ │ ├── s_ceil.c │ │ ├── s_cexp.c │ │ ├── s_cexpl.c │ │ ├── s_clog.c │ │ ├── s_clog10.c │ │ ├── s_clog10l.c │ │ ├── s_clogl.c │ │ ├── s_copysign.c │ │ ├── s_cpow.c │ │ ├── s_cpowl.c │ │ ├── s_cproj.c │ │ ├── s_cprojl.c │ │ ├── s_csin.c │ │ ├── s_csinh.c │ │ ├── s_csinhl.c │ │ ├── s_csinl.c │ │ ├── s_csqrt.c │ │ ├── s_csqrtl.c │ │ ├── s_ctan.c │ │ ├── s_ctanh.c │ │ ├── s_ctanhl.c │ │ ├── s_ctanl.c │ │ ├── s_erf.c │ │ ├── s_expm1.c │ │ ├── s_fabs.c │ │ ├── s_fdim.c │ │ ├── s_fdiml.c │ │ ├── s_finite.c │ │ ├── s_floor.c │ │ ├── s_fma.c │ │ ├── s_fmal.c │ │ ├── s_fmax.c │ │ ├── s_fmaxl.c │ │ ├── s_fmin.c │ │ ├── s_fminl.c │ │ ├── s_frexp.c │ │ ├── s_isinf.c │ │ ├── s_isnan.c │ │ ├── s_ldexp.c │ │ ├── s_ldexpl.c │ │ ├── s_llrint.c │ │ ├── s_llround.c │ │ ├── s_log1p.c │ │ ├── s_logb.c │ │ ├── s_lrint.c │ │ ├── s_lround.c │ │ ├── s_modf.c │ │ ├── s_nan.c │ │ ├── s_nanl.c │ │ ├── s_nearbyint.c │ │ ├── s_nextafter.c │ │ ├── s_nexttowardfd.c │ │ ├── s_remquo.c │ │ ├── s_rint.c │ │ ├── s_round.c │ │ ├── s_scalbln.c │ │ ├── s_scalbn.c │ │ ├── s_significand.c │ │ ├── s_significandl.c │ │ ├── s_sin.c │ │ ├── s_sincos.c │ │ ├── s_tan.c │ │ ├── s_tanh.c │ │ ├── s_trunc.c │ │ ├── w_acos.c │ │ ├── w_acosh.c │ │ ├── w_acoshl.c │ │ ├── w_acosl.c │ │ ├── w_asin.c │ │ ├── w_asinl.c │ │ ├── w_atan2.c │ │ ├── w_atan2l.c │ │ ├── w_atanh.c │ │ ├── w_atanhl.c │ │ ├── w_cosh.c │ │ ├── w_coshl.c │ │ ├── w_drem.c │ │ ├── w_dreml.c │ │ ├── w_exp.c │ │ ├── w_exp10.c │ │ ├── w_exp10l.c │ │ ├── w_fmod.c │ │ ├── w_fmodl.c │ │ ├── w_hypot.c │ │ ├── w_hypotl.c │ │ ├── w_ilogb.c │ │ ├── w_ilogbl.c │ │ ├── w_j0.c │ │ ├── w_j0l.c │ │ ├── w_j1.c │ │ ├── w_j1l.c │ │ ├── w_jn.c │ │ ├── w_jnl.c │ │ ├── w_lgamma.c │ │ ├── w_lgamma_r.c │ │ ├── w_lgammal.c │ │ ├── w_lgammal_r.c │ │ ├── w_log.c │ │ ├── w_log10.c │ │ ├── w_log10l.c │ │ ├── w_log2.c │ │ ├── w_log2l.c │ │ ├── w_logl.c │ │ ├── w_pow.c │ │ ├── w_powl.c │ │ ├── w_remainder.c │ │ ├── w_remainderl.c │ │ ├── w_scalb.c │ │ ├── w_scalbl.c │ │ ├── w_sinh.c │ │ ├── w_sinhl.c │ │ ├── w_sqrt.c │ │ ├── w_sqrtl.c │ │ ├── w_tgamma.c │ │ └── w_tgammal.c │ ├── s_lib_version.c │ ├── s_matherr.c │ ├── s_signgam.c │ └── support.c ├── init_array │ ├── crti.S │ ├── crtn.S │ ├── elf-init.c │ └── gmon-start.c ├── mach │ ├── Makefile │ ├── Subdirs │ ├── _strerror.c │ ├── adjtime.c │ ├── bits │ │ └── libc-lock.h │ ├── configure │ ├── configure.in │ ├── getloadavg.c │ ├── getpagesize.c │ ├── getsysstats.c │ ├── gettimeofday.c │ ├── hurd │ │ ├── Implies │ │ ├── Makeconfig │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── Versions │ │ ├── _exit.c │ │ ├── accept.c │ │ ├── accept4.c │ │ ├── access.c │ │ ├── adjtime.c │ │ ├── bind.c │ │ ├── bits │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── ioctls.h │ │ │ ├── libc-lock.h │ │ │ ├── libc-tsd.h │ │ │ ├── local_lim.h │ │ │ ├── param.h │ │ │ ├── posix_opt.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ └── typesizes.h │ │ ├── brk.c │ │ ├── chdir.c │ │ ├── check_fds.c │ │ ├── chflags.c │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── chroot.c │ │ ├── clock.c │ │ ├── close.c │ │ ├── closedir.c │ │ ├── configure │ │ ├── configure.in │ │ ├── connect.c │ │ ├── cthreads.c │ │ ├── device-nrs.h │ │ ├── dirfd.c │ │ ├── dirstream.h │ │ ├── dl-execstack.c │ │ ├── dl-sysdep.c │ │ ├── dl-sysdep.h │ │ ├── dup2.c │ │ ├── dup3.c │ │ ├── eloop-threshold.h │ │ ├── enbl-secure.c │ │ ├── err_hurd.sub │ │ ├── errlist.c │ │ ├── errno-loc.c │ │ ├── errno.c │ │ ├── errnos.awk │ │ ├── euidaccess.c │ │ ├── execve.c │ │ ├── faccessat.c │ │ ├── fchdir.c │ │ ├── fchflags.c │ │ ├── fchmod.c │ │ ├── fchmodat.c │ │ ├── fchown.c │ │ ├── fchownat.c │ │ ├── fcntl.c │ │ ├── fdatasync.c │ │ ├── fdopendir.c │ │ ├── fexecve.c │ │ ├── fgetxattr.c │ │ ├── flistxattr.c │ │ ├── flock.c │ │ ├── fork.c │ │ ├── fpathconf.c │ │ ├── fremovexattr.c │ │ ├── fsetxattr.c │ │ ├── fstatfs.c │ │ ├── fstatfs64.c │ │ ├── fstatvfs.c │ │ ├── fstatvfs64.c │ │ ├── fsync.c │ │ ├── ftruncate.c │ │ ├── futimes.c │ │ ├── fxstat.c │ │ ├── fxstat64.c │ │ ├── fxstatat.c │ │ ├── fxstatat64.c │ │ ├── getclktck.c │ │ ├── getcwd.c │ │ ├── getdents.c │ │ ├── getdomain.c │ │ ├── getdtsz.c │ │ ├── getegid.c │ │ ├── geteuid.c │ │ ├── getgid.c │ │ ├── getgroups.c │ │ ├── gethostid.c │ │ ├── gethostname.c │ │ ├── getitimer.c │ │ ├── getlogin.c │ │ ├── getlogin_r.c │ │ ├── getpeername.c │ │ ├── getpgid.c │ │ ├── getpid.c │ │ ├── getppid.c │ │ ├── getpriority.c │ │ ├── getresgid.c │ │ ├── getresuid.c │ │ ├── getrlimit.c │ │ ├── getrusage.c │ │ ├── getsid.c │ │ ├── getsockname.c │ │ ├── getsockopt.c │ │ ├── getuid.c │ │ ├── getxattr.c │ │ ├── group_member.c │ │ ├── i386 │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.S │ │ │ ├── bits │ │ │ │ └── sigcontext.h │ │ │ ├── dl-machine.h │ │ │ ├── exc2signal.c │ │ │ ├── init-first.c │ │ │ ├── intr-msg.h │ │ │ ├── ioperm.c │ │ │ ├── longjmp-ts.c │ │ │ ├── sigcontextinfo.h │ │ │ ├── signal-defines.sym │ │ │ ├── sigreturn.c │ │ │ ├── static-start.S │ │ │ ├── sys │ │ │ │ └── io.h │ │ │ ├── tls.h │ │ │ └── trampoline.c │ │ ├── if_index.c │ │ ├── ifreq.c │ │ ├── ifreq.h │ │ ├── init-posix.c │ │ ├── ioctl.c │ │ ├── isatty.c │ │ ├── jmp-unwind.c │ │ ├── kernel-features.h │ │ ├── kill.c │ │ ├── lchmod.c │ │ ├── lchown.c │ │ ├── lgetxattr.c │ │ ├── libc-ldscript │ │ ├── libc_p-ldscript │ │ ├── link.c │ │ ├── linkat.c │ │ ├── listen.c │ │ ├── listxattr.c │ │ ├── llistxattr.c │ │ ├── lremovexattr.c │ │ ├── lseek.c │ │ ├── lseek64.c │ │ ├── lsetxattr.c │ │ ├── lutimes.c │ │ ├── lxstat.c │ │ ├── lxstat64.c │ │ ├── malloc-machine.h │ │ ├── mig-reply.c │ │ ├── mkdir.c │ │ ├── mkdirat.c │ │ ├── mlock.c │ │ ├── mmap.c │ │ ├── munlock.c │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if_arp.h │ │ │ ├── if_ether.h │ │ │ ├── if_ppp.h │ │ │ └── route.h │ │ ├── open.c │ │ ├── open64.c │ │ ├── openat.c │ │ ├── openat64.c │ │ ├── opendir.c │ │ ├── pathconf.c │ │ ├── pipe.c │ │ ├── poll.c │ │ ├── ppoll.c │ │ ├── pread.c │ │ ├── pread64.c │ │ ├── prof-freq.c │ │ ├── profil.c │ │ ├── pselect.c │ │ ├── ptrace.c │ │ ├── ptsname.c │ │ ├── pwrite.c │ │ ├── pwrite64.c │ │ ├── read.c │ │ ├── readdir.c │ │ ├── readdir64.c │ │ ├── readdir64_r.c │ │ ├── readdir_r.c │ │ ├── readlink.c │ │ ├── readlinkat.c │ │ ├── reboot.c │ │ ├── recv.c │ │ ├── recvfrom.c │ │ ├── recvmsg.c │ │ ├── removexattr.c │ │ ├── rename.c │ │ ├── renameat.c │ │ ├── revoke.c │ │ ├── rewinddir.c │ │ ├── rmdir.c │ │ ├── sbrk.c │ │ ├── seekdir.c │ │ ├── select.c │ │ ├── send.c │ │ ├── sendfile.c │ │ ├── sendfile64.c │ │ ├── sendmsg.c │ │ ├── sendto.c │ │ ├── setdomain.c │ │ ├── setegid.c │ │ ├── seteuid.c │ │ ├── setgid.c │ │ ├── setgroups.c │ │ ├── sethostid.c │ │ ├── sethostname.c │ │ ├── setitimer.c │ │ ├── setlogin.c │ │ ├── setpgid.c │ │ ├── setpriority.c │ │ ├── setregid.c │ │ ├── setresgid.c │ │ ├── setresuid.c │ │ ├── setreuid.c │ │ ├── setrlimit.c │ │ ├── setsid.c │ │ ├── setsockopt.c │ │ ├── settimeofday.c │ │ ├── setuid.c │ │ ├── setxattr.c │ │ ├── shutdown.c │ │ ├── sigaction.c │ │ ├── sigaltstack.c │ │ ├── siglist.h │ │ ├── sigpending.c │ │ ├── sigprocmask.c │ │ ├── sigstack.c │ │ ├── sigsuspend.c │ │ ├── sigwait.c │ │ ├── socket.c │ │ ├── socketpair.c │ │ ├── spawni.c │ │ ├── statfs.c │ │ ├── statfs64.c │ │ ├── statfsconv.c │ │ ├── statvfs.c │ │ ├── statvfs64.c │ │ ├── symlink.c │ │ ├── symlinkat.c │ │ ├── sync.c │ │ ├── syncfs.c │ │ ├── sysconf.c │ │ ├── telldir.c │ │ ├── times.c │ │ ├── tls.h │ │ ├── tmpfile.c │ │ ├── tmpfile64.c │ │ ├── truncate.c │ │ ├── ttyname.c │ │ ├── ttyname_r.c │ │ ├── umask.c │ │ ├── uname.c │ │ ├── unlink.c │ │ ├── unlinkat.c │ │ ├── utimes.c │ │ ├── wait4.c │ │ ├── write.c │ │ ├── xmknod.c │ │ ├── xmknodat.c │ │ ├── xstat.c │ │ ├── xstat64.c │ │ └── xstatconv.c │ ├── i386 │ │ ├── machine-lock.h │ │ ├── machine-sp.h │ │ ├── syscall.S │ │ ├── sysdep.h │ │ └── thread_state.h │ ├── mprotect.c │ ├── msync.c │ ├── munmap.c │ ├── nanosleep.c │ ├── pagecopy.h │ ├── readonly-area.c │ ├── sched_yield.c │ ├── sleep.c │ ├── strerror_l.c │ ├── sys │ │ ├── reboot.h │ │ └── syscall.h │ ├── sysdep.h │ ├── thread_state.h │ ├── usleep.c │ └── xpg-strerror.c ├── posix │ ├── Makefile │ ├── alarm.c │ ├── clock.c │ ├── clock_getres.c │ ├── closedir.c │ ├── ctermid.c │ ├── cuserid.c │ ├── dirfd.c │ ├── dirstream.h │ ├── dup.c │ ├── dup2.c │ ├── euidaccess.c │ ├── fdopendir.c │ ├── flock.c │ ├── fpathconf.c │ ├── gai_strerror-strs.h │ ├── gai_strerror.c │ ├── getaddrinfo.c │ ├── getcwd.c │ ├── getdtsz.c │ ├── gethostname.c │ ├── getpagesize.c │ ├── gettimeofday.c │ ├── isatty.c │ ├── isfdtype.c │ ├── killpg.c │ ├── libc_fatal.c │ ├── mkfifo.c │ ├── mkfifoat.c │ ├── nice.c │ ├── open64.c │ ├── opendir.c │ ├── pathconf.c │ ├── pause.c │ ├── posix_fallocate.c │ ├── posix_fallocate64.c │ ├── pread.c │ ├── pread64.c │ ├── preadv.c │ ├── preadv64.c │ ├── profil.c │ ├── pwrite.c │ ├── pwrite64.c │ ├── pwritev.c │ ├── pwritev64.c │ ├── raise.c │ ├── readdir.c │ ├── readdir_r.c │ ├── readv.c │ ├── remove.c │ ├── rename.c │ ├── rewinddir.c │ ├── seekdir.c │ ├── shm_open.c │ ├── shm_unlink.c │ ├── sigblock.c │ ├── sigignore.c │ ├── sigintr.c │ ├── signal.c │ ├── sigpause.c │ ├── sigset.c │ ├── sigsetmask.c │ ├── sigsuspend.c │ ├── sigvec.c │ ├── sigwait.c │ ├── sleep.c │ ├── spawni.c │ ├── sprofil.c │ ├── sysconf.c │ ├── system.c │ ├── sysv_signal.c │ ├── telldir.c │ ├── tempname.c │ ├── time.c │ ├── timespec_get.c │ ├── truncate.c │ ├── ttyname.c │ ├── ttyname_r.c │ ├── ulimit.c │ ├── utime.c │ ├── utimes.c │ ├── wait.c │ ├── wait3.c │ ├── waitid.c │ └── writev.c ├── powerpc │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── abort-instr.h │ ├── bits │ │ ├── atomic.h │ │ ├── endian.h │ │ ├── fenv.h │ │ ├── fenvinline.h │ │ ├── hwcap.h │ │ ├── link.h │ │ ├── mathdef.h │ │ ├── mathinline.h │ │ └── setjmp.h │ ├── configure │ ├── configure.in │ ├── dl-procinfo.c │ ├── dl-procinfo.h │ ├── dl-tls.h │ ├── ffs.c │ ├── fpu │ │ ├── Makefile │ │ ├── e_hypot.c │ │ ├── e_hypotf.c │ │ ├── e_rem_pio2f.c │ │ ├── e_sqrt.c │ │ ├── e_sqrtf.c │ │ ├── fclrexcpt.c │ │ ├── fe_mask.c │ │ ├── fe_nomask.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fenv_const.c │ │ ├── fenv_libc.h │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── k_cosf.c │ │ ├── k_rem_pio2f.c │ │ ├── k_sinf.c │ │ ├── libm-test-ulps │ │ ├── math_ldbl.h │ │ ├── math_private.h │ │ ├── s_cosf.c │ │ ├── s_fabs.S │ │ ├── s_fabsf.S │ │ ├── s_fdim.c │ │ ├── s_fdimf.c │ │ ├── s_float_bitwise.h │ │ ├── s_fma.S │ │ ├── s_fmaf.S │ │ ├── s_fmax.S │ │ ├── s_fmaxf.S │ │ ├── s_fmin.S │ │ ├── s_fminf.S │ │ ├── s_isnan.c │ │ ├── s_isnanf.S │ │ ├── s_llround.c │ │ ├── s_llroundf.c │ │ ├── s_lrintf.S │ │ ├── s_rint.c │ │ ├── s_rintf.c │ │ ├── s_sinf.c │ │ ├── t_sqrt.c │ │ ├── tst-setcontext-fpscr.c │ │ ├── w_sqrt.c │ │ └── w_sqrtf.c │ ├── fpu_control.h │ ├── gccframe.h │ ├── ifunc-sel.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── locale-defines.sym │ ├── longjmp.c │ ├── machine-gmon.h │ ├── math-tests.h │ ├── memmove.c │ ├── memusage.h │ ├── mp_clz_tab.c │ ├── novmx-longjmp.c │ ├── novmx-sigjmp.c │ ├── novmxsetjmp.h │ ├── power4 │ │ └── fpu │ │ │ ├── Makefile │ │ │ ├── mpa-arch.h │ │ │ └── mpa.c │ ├── power5+ │ │ └── fpu │ │ │ ├── s_modf.c │ │ │ └── s_modff.c │ ├── powerpc32 │ │ ├── 970 │ │ │ └── Implies │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── __longjmp-common.S │ │ ├── __longjmp.S │ │ ├── a2 │ │ │ └── memcpy.S │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── backtrace.c │ │ ├── bits │ │ │ ├── atomic.h │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── bzero.S │ │ ├── cell │ │ │ └── memcpy.S │ │ ├── compat-ppc-mcount.S │ │ ├── configure │ │ ├── configure.in │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-dtprocnum.h │ │ ├── dl-irel.h │ │ ├── dl-machine.c │ │ ├── dl-machine.h │ │ ├── dl-start.S │ │ ├── dl-trampoline.S │ │ ├── fpu │ │ │ ├── Makefile │ │ │ ├── __longjmp-common.S │ │ │ ├── __longjmp.S │ │ │ ├── fprrest.S │ │ │ ├── fprsave.S │ │ │ ├── s_ceil.S │ │ │ ├── s_ceilf.S │ │ │ ├── s_copysign.S │ │ │ ├── s_copysignf.S │ │ │ ├── s_copysignl.S │ │ │ ├── s_fabs.S │ │ │ ├── s_fabsl.S │ │ │ ├── s_fdim.c │ │ │ ├── s_floor.S │ │ │ ├── s_floorf.S │ │ │ ├── s_fma.S │ │ │ ├── s_fmax.S │ │ │ ├── s_fmin.S │ │ │ ├── s_isnan.S │ │ │ ├── s_llrint.c │ │ │ ├── s_llrintf.c │ │ │ ├── s_lrint.S │ │ │ ├── s_lround.S │ │ │ ├── s_lroundf.S │ │ │ ├── s_nearbyint.S │ │ │ ├── s_nearbyintf.S │ │ │ ├── s_rint.S │ │ │ ├── s_rintf.S │ │ │ ├── s_round.S │ │ │ ├── s_roundf.S │ │ │ ├── s_trunc.S │ │ │ ├── s_truncf.S │ │ │ ├── setjmp-common.S │ │ │ └── setjmp.S │ │ ├── gprrest0.S │ │ ├── gprrest1.S │ │ ├── gprsave0.S │ │ ├── gprsave1.S │ │ ├── hp-timing.h │ │ ├── libgcc-compat.S │ │ ├── lshift.S │ │ ├── mcount.c │ │ ├── memset.S │ │ ├── mul_1.S │ │ ├── power4 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── fpu │ │ │ │ ├── s_llrint.S │ │ │ │ ├── s_llrintf.S │ │ │ │ ├── s_llround.S │ │ │ │ ├── s_llroundf.S │ │ │ │ ├── w_sqrt.S │ │ │ │ └── w_sqrtf.S │ │ │ ├── hp-timing.c │ │ │ ├── hp-timing.h │ │ │ ├── memcmp.S │ │ │ ├── memcopy.h │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── strncmp.S │ │ │ └── wordcopy.c │ │ ├── power5+ │ │ │ ├── Implies │ │ │ └── fpu │ │ │ │ ├── s_ceil.S │ │ │ │ ├── s_ceilf.S │ │ │ │ ├── s_floor.S │ │ │ │ ├── s_floorf.S │ │ │ │ ├── s_llround.S │ │ │ │ ├── s_llroundf.S │ │ │ │ ├── s_lround.S │ │ │ │ ├── s_round.S │ │ │ │ ├── s_roundf.S │ │ │ │ ├── s_trunc.S │ │ │ │ └── s_truncf.S │ │ ├── power5 │ │ │ ├── Implies │ │ │ └── fpu │ │ │ │ ├── s_isnan.S │ │ │ │ ├── s_isnanf.S │ │ │ │ ├── w_sqrt.S │ │ │ │ └── w_sqrtf.S │ │ ├── power6 │ │ │ ├── Implies │ │ │ ├── fpu │ │ │ │ ├── s_copysign.S │ │ │ │ ├── s_copysignf.S │ │ │ │ ├── s_isnan.S │ │ │ │ ├── s_isnanf.S │ │ │ │ ├── s_llrint.S │ │ │ │ ├── s_llrintf.S │ │ │ │ ├── s_llround.S │ │ │ │ └── s_llroundf.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── wcschr.c │ │ │ ├── wcscpy.c │ │ │ ├── wcsrchr.c │ │ │ └── wordcopy.c │ │ ├── power6x │ │ │ ├── Implies │ │ │ └── fpu │ │ │ │ ├── s_lrint.S │ │ │ │ └── s_lround.S │ │ ├── power7 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── fpu │ │ │ │ ├── s_finite.S │ │ │ │ ├── s_finitef.S │ │ │ │ ├── s_isinf.S │ │ │ │ ├── s_isinff.S │ │ │ │ ├── s_isnan.S │ │ │ │ ├── s_isnanf.S │ │ │ │ ├── s_logb.c │ │ │ │ ├── s_logbf.c │ │ │ │ └── s_logbl.c │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── mempcpy.S │ │ │ ├── memrchr.S │ │ │ ├── memset.S │ │ │ ├── rawmemchr.S │ │ │ ├── strcasecmp.S │ │ │ ├── strcasecmp_l.S │ │ │ ├── strchr.S │ │ │ ├── strchrnul.S │ │ │ ├── strlen.S │ │ │ ├── strncmp.S │ │ │ └── strnlen.S │ │ ├── power8 │ │ │ └── Implies │ │ ├── ppc-mcount.S │ │ ├── register-dump.h │ │ ├── rshift.S │ │ ├── rtld-memset.c │ │ ├── setjmp-common.S │ │ ├── setjmp.S │ │ ├── stackguard-macros.h │ │ ├── start.S │ │ ├── stpcpy.S │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ ├── strncmp.S │ │ ├── sub_n.S │ │ ├── submul_1.S │ │ ├── sysdep.h │ │ ├── tls-macros.h │ │ └── tst-audit.h │ ├── powerpc64 │ │ ├── 970 │ │ │ └── Implies │ │ ├── Implies │ │ ├── Makefile │ │ ├── __longjmp-common.S │ │ ├── __longjmp.S │ │ ├── a2 │ │ │ └── memcpy.S │ │ ├── backtrace.c │ │ ├── bits │ │ │ ├── atomic.h │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── bzero.S │ │ ├── cell │ │ │ └── memcpy.S │ │ ├── configure │ │ ├── configure.in │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-dtprocnum.h │ │ ├── dl-irel.h │ │ ├── dl-machine.c │ │ ├── dl-machine.h │ │ ├── dl-trampoline.S │ │ ├── entry.h │ │ ├── ffsll.c │ │ ├── fpu │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── s_ceil.S │ │ │ ├── s_ceilf.S │ │ │ ├── s_ceill.S │ │ │ ├── s_copysign.S │ │ │ ├── s_copysignf.S │ │ │ ├── s_copysignl.S │ │ │ ├── s_fabs.S │ │ │ ├── s_fabsl.S │ │ │ ├── s_fdim.c │ │ │ ├── s_floor.S │ │ │ ├── s_floorf.S │ │ │ ├── s_fma.S │ │ │ ├── s_fmax.S │ │ │ ├── s_fmin.S │ │ │ ├── s_isnan.S │ │ │ ├── s_llrint.S │ │ │ ├── s_llrintf.S │ │ │ ├── s_llround.S │ │ │ ├── s_llroundf.S │ │ │ ├── s_lrint.S │ │ │ ├── s_lround.S │ │ │ ├── s_lroundf.S │ │ │ ├── s_nearbyint.S │ │ │ ├── s_nearbyintf.S │ │ │ ├── s_nearbyintl.S │ │ │ ├── s_rint.S │ │ │ ├── s_rintf.S │ │ │ ├── s_round.S │ │ │ ├── s_roundf.S │ │ │ ├── s_roundl.S │ │ │ ├── s_trunc.S │ │ │ ├── s_truncf.S │ │ │ └── s_truncl.S │ │ ├── hp-timing.c │ │ ├── hp-timing.h │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── power4 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── fpu │ │ │ │ ├── w_sqrt.c │ │ │ │ └── w_sqrtf.c │ │ │ ├── memcmp.S │ │ │ ├── memcopy.h │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── strncmp.S │ │ │ └── wordcopy.c │ │ ├── power5+ │ │ │ ├── Implies │ │ │ └── fpu │ │ │ │ ├── s_ceil.S │ │ │ │ ├── s_ceilf.S │ │ │ │ ├── s_floor.S │ │ │ │ ├── s_floorf.S │ │ │ │ ├── s_llround.S │ │ │ │ ├── s_round.S │ │ │ │ ├── s_roundf.S │ │ │ │ ├── s_trunc.S │ │ │ │ └── s_truncf.S │ │ ├── power5 │ │ │ ├── Implies │ │ │ └── fpu │ │ │ │ └── s_isnan.S │ │ ├── power6 │ │ │ ├── Implies │ │ │ ├── fpu │ │ │ │ ├── s_copysign.S │ │ │ │ ├── s_copysignf.S │ │ │ │ └── s_isnan.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── wcschr.c │ │ │ ├── wcscpy.c │ │ │ ├── wcsrchr.c │ │ │ └── wordcopy.c │ │ ├── power6x │ │ │ ├── Implies │ │ │ └── fpu │ │ │ │ ├── s_isnan.S │ │ │ │ ├── s_llrint.S │ │ │ │ └── s_llround.S │ │ ├── power7 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── fpu │ │ │ │ ├── s_finite.S │ │ │ │ ├── s_finitef.S │ │ │ │ ├── s_isinf.S │ │ │ │ ├── s_isinff.S │ │ │ │ ├── s_isnan.S │ │ │ │ ├── s_isnanf.S │ │ │ │ ├── s_logb.c │ │ │ │ ├── s_logbf.c │ │ │ │ └── s_logbl.c │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── mempcpy.S │ │ │ ├── memrchr.S │ │ │ ├── memset.S │ │ │ ├── rawmemchr.S │ │ │ ├── strcasecmp.S │ │ │ ├── strcasecmp_l.S │ │ │ ├── strchr.S │ │ │ ├── strchrnul.S │ │ │ ├── strlen.S │ │ │ ├── strncmp.S │ │ │ └── strnlen.S │ │ ├── power8 │ │ │ └── Implies │ │ ├── ppc-mcount.S │ │ ├── register-dump.h │ │ ├── rtld-memset.c │ │ ├── setjmp-common.S │ │ ├── setjmp.S │ │ ├── stackguard-macros.h │ │ ├── start.S │ │ ├── stpcpy.S │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ ├── strncmp.S │ │ ├── sysdep.h │ │ ├── tls-macros.h │ │ └── tst-audit.h │ ├── rtld-global-offsets.sym │ ├── sched_cpucount.c │ ├── sigjmp.c │ ├── stackinfo.h │ ├── strcat.c │ ├── sys │ │ └── platform │ │ │ └── ppc.h │ ├── sysdep.h │ ├── test-arith.c │ ├── test-arithf.c │ ├── test-gettimebase.c │ ├── tls-macros.h │ └── tst-stack-align.h ├── pthread │ ├── Makeconfig │ ├── Versions │ ├── aio_cancel.c │ ├── aio_fsync.c │ ├── aio_misc.c │ ├── aio_misc.h │ ├── aio_notify.c │ ├── aio_read.c │ ├── aio_read64.c │ ├── aio_suspend.c │ ├── aio_write.c │ ├── aio_write64.c │ ├── lio_listio.c │ └── lio_listio64.c ├── s390 │ ├── Implies │ ├── Versions │ ├── abort-instr.h │ ├── asm-syntax.h │ ├── bits │ │ ├── atomic.h │ │ ├── byteswap-16.h │ │ ├── byteswap.h │ │ ├── endian.h │ │ ├── link.h │ │ ├── linkmap.h │ │ ├── mathdef.h │ │ ├── setjmp.h │ │ ├── string.h │ │ └── xtitypes.h │ ├── dl-irel.h │ ├── dl-procinfo.c │ ├── dl-procinfo.h │ ├── dl-tls.h │ ├── ffs.c │ ├── fpu │ │ ├── bits │ │ │ ├── fenv.h │ │ │ └── mathinline.h │ │ ├── e_sqrt.c │ │ ├── e_sqrtf.c │ │ ├── e_sqrtl.c │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fenv_libc.h │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fpu_control.h │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── get-rounding-mode.h │ │ ├── libm-test-ulps │ │ ├── s_fma.c │ │ └── s_fmaf.c │ ├── gccframe.h │ ├── gmp-mparam.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── machine-gmon.h │ ├── memusage.h │ ├── s390-32 │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── __longjmp.c │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── backtrace.c │ │ ├── bcopy.S │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── bzero.S │ │ ├── configure │ │ ├── configure.in │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-machine.h │ │ ├── dl-trampoline.S │ │ ├── memchr.S │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── mul_1.S │ │ ├── multiarch │ │ │ ├── Makefile │ │ │ ├── ifunc-resolve.c │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ └── memset.S │ │ ├── s390-mcount.S │ │ ├── setjmp.S │ │ ├── stackguard-macros.h │ │ ├── start.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strncpy.S │ │ ├── sub_n.S │ │ ├── sysdep.h │ │ ├── tls-macros.h │ │ └── tst-audit.h │ ├── s390-64 │ │ ├── Implies │ │ ├── Makefile │ │ ├── __longjmp.c │ │ ├── add_n.S │ │ ├── backtrace.c │ │ ├── bcopy.S │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── bzero.S │ │ ├── configure │ │ ├── configure.in │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-machine.h │ │ ├── dl-trampoline.S │ │ ├── iso-8859-1_cp037_z900.c │ │ ├── memchr.S │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── multiarch │ │ │ ├── Makefile │ │ │ ├── ifunc-resolve.c │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ └── memset.S │ │ ├── s390x-mcount.S │ │ ├── setjmp.S │ │ ├── stackguard-macros.h │ │ ├── start.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strncpy.S │ │ ├── sub_n.S │ │ ├── sysdep.h │ │ ├── tls-macros.h │ │ ├── tst-audit.h │ │ ├── utf16-utf32-z9.c │ │ ├── utf8-utf16-z9.c │ │ └── utf8-utf32-z9.c │ └── stackinfo.h ├── sh │ ├── Implies │ ├── Makefile │ ├── ____longjmp_chk.S │ ├── _mcount.S │ ├── abort-instr.h │ ├── backtrace.c │ ├── bits │ │ ├── endian.h │ │ ├── huge_val.h │ │ ├── link.h │ │ ├── linkmap.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.in │ ├── crti.S │ ├── crtn.S │ ├── dl-machine.h │ ├── dl-tls.h │ ├── dl-trampoline.S │ ├── gccframe.h │ ├── gmp-mparam.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── machine-gmon.h │ ├── memcpy.S │ ├── memset.S │ ├── memusage.h │ ├── sh3 │ │ ├── __longjmp.S │ │ └── setjmp.S │ ├── sh4 │ │ ├── Versions │ │ ├── __longjmp.S │ │ ├── bits │ │ │ └── mathdef.h │ │ ├── dl-trampoline.S │ │ ├── fpu │ │ │ ├── bits │ │ │ │ └── fenv.h │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fesetenv.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fpu_control.h │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ └── libm-test-ulps │ │ └── setjmp.S │ ├── stackinfo.h │ ├── start.S │ ├── strlen.S │ ├── sys │ │ └── ucontext.h │ ├── sysdep.h │ ├── tininess.h │ ├── tls-macros.h │ └── tst-audit.h ├── sparc │ ├── Makefile │ ├── Subdirs │ ├── abort-instr.h │ ├── backtrace.c │ ├── bits │ │ ├── endian.h │ │ ├── huge_vall.h │ │ ├── hwcap.h │ │ ├── link.h │ │ ├── mathdef.h │ │ └── string.h │ ├── configure │ ├── configure.in │ ├── crti.S │ ├── crtn.S │ ├── dl-dtprocnum.h │ ├── dl-procinfo.c │ ├── dl-procinfo.h │ ├── dl-sysdep.h │ ├── dl-tls.h │ ├── fpu │ │ ├── bits │ │ │ ├── fenv.h │ │ │ └── mathinline.h │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fenv_private.h │ │ ├── fesetenv.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fpu_control.h │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── libm-test-ulps │ │ └── math_private.h │ ├── gccframe.h │ ├── ldsodefs.h │ ├── machine-gmon.h │ ├── mempcpy.S │ ├── memusage.h │ ├── sparc-ifunc.h │ ├── sparc-mcount.S │ ├── sparc32 │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── __longjmp.S │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── alloca.S │ │ ├── backtrace.h │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── setjmp.h │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── bzero.c │ │ ├── divrem.m4 │ │ ├── dl-irel.h │ │ ├── dl-machine.h │ │ ├── dl-plt.h │ │ ├── dl-trampoline.S │ │ ├── dotmul.S │ │ ├── e_sqrt.c │ │ ├── fpu │ │ │ ├── e_sqrtl.c │ │ │ ├── s_copysign.S │ │ │ ├── s_copysignf.S │ │ │ ├── s_fabs.S │ │ │ ├── s_fabsf.S │ │ │ ├── s_fabsl.c │ │ │ ├── s_fdim.S │ │ │ ├── s_fdimf.S │ │ │ ├── s_fma.c │ │ │ ├── s_signbit.S │ │ │ ├── s_signbitf.S │ │ │ ├── s_signbitl.S │ │ │ ├── w_sqrt.S │ │ │ └── w_sqrtf.S │ │ ├── ieee754.h │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── lshift.S │ │ ├── memchr.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── mul_1.S │ │ ├── rem.S │ │ ├── rshift.S │ │ ├── sdiv.S │ │ ├── setjmp.S │ │ ├── soft-fp │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── q_add.c │ │ │ ├── q_cmp.c │ │ │ ├── q_cmpe.c │ │ │ ├── q_div.c │ │ │ ├── q_dtoq.c │ │ │ ├── q_feq.c │ │ │ ├── q_fge.c │ │ │ ├── q_fgt.c │ │ │ ├── q_fle.c │ │ │ ├── q_flt.c │ │ │ ├── q_fne.c │ │ │ ├── q_itoq.c │ │ │ ├── q_lltoq.c │ │ │ ├── q_mul.c │ │ │ ├── q_neg.c │ │ │ ├── q_qtod.c │ │ │ ├── q_qtoi.c │ │ │ ├── q_qtoll.c │ │ │ ├── q_qtos.c │ │ │ ├── q_qtou.c │ │ │ ├── q_qtoull.c │ │ │ ├── q_sqrt.c │ │ │ ├── q_stoq.c │ │ │ ├── q_sub.c │ │ │ ├── q_ulltoq.c │ │ │ ├── q_util.c │ │ │ ├── q_utoq.c │ │ │ └── sfp-machine.h │ │ ├── sparcv8 │ │ │ ├── Makefile │ │ │ ├── addmul_1.S │ │ │ ├── dotmul.S │ │ │ ├── mul_1.S │ │ │ ├── rem.S │ │ │ ├── sdiv.S │ │ │ ├── submul_1.S │ │ │ ├── udiv.S │ │ │ ├── umul.S │ │ │ └── urem.S │ │ ├── sparcv9 │ │ │ ├── Makefile │ │ │ ├── addmul_1.S │ │ │ ├── backtrace.h │ │ │ ├── bits │ │ │ │ └── atomic.h │ │ │ ├── bzero.c │ │ │ ├── dotmul.S │ │ │ ├── fpu │ │ │ │ ├── multiarch │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── s_ceil-vis2.S │ │ │ │ │ ├── s_ceil-vis3.S │ │ │ │ │ ├── s_ceil.S │ │ │ │ │ ├── s_ceilf-vis2.S │ │ │ │ │ ├── s_ceilf-vis3.S │ │ │ │ │ ├── s_ceilf.S │ │ │ │ │ ├── s_copysign-vis3.S │ │ │ │ │ ├── s_copysign.S │ │ │ │ │ ├── s_copysignf-vis3.S │ │ │ │ │ ├── s_copysignf.S │ │ │ │ │ ├── s_fabs-vis3.S │ │ │ │ │ ├── s_fabs.S │ │ │ │ │ ├── s_fabsf-vis3.S │ │ │ │ │ ├── s_fabsf.S │ │ │ │ │ ├── s_fdim-vis3.S │ │ │ │ │ ├── s_fdim.S │ │ │ │ │ ├── s_fdimf-vis3.S │ │ │ │ │ ├── s_fdimf.S │ │ │ │ │ ├── s_floor-vis2.S │ │ │ │ │ ├── s_floor-vis3.S │ │ │ │ │ ├── s_floor.S │ │ │ │ │ ├── s_floorf-vis2.S │ │ │ │ │ ├── s_floorf-vis3.S │ │ │ │ │ ├── s_floorf.S │ │ │ │ │ ├── s_fma-vis3.S │ │ │ │ │ ├── s_fma.c │ │ │ │ │ ├── s_fmaf-vis3.S │ │ │ │ │ ├── s_fmaf.c │ │ │ │ │ ├── s_fmax-vis3.S │ │ │ │ │ ├── s_fmax.S │ │ │ │ │ ├── s_fmaxf-vis3.S │ │ │ │ │ ├── s_fmaxf.S │ │ │ │ │ ├── s_fmin-vis3.S │ │ │ │ │ ├── s_fmin.S │ │ │ │ │ ├── s_fminf-vis3.S │ │ │ │ │ ├── s_fminf.S │ │ │ │ │ ├── s_llrint-vis3.S │ │ │ │ │ ├── s_llrint.S │ │ │ │ │ ├── s_llrintf-vis3.S │ │ │ │ │ ├── s_llrintf.S │ │ │ │ │ ├── s_nearbyint-vis3.S │ │ │ │ │ ├── s_nearbyint.S │ │ │ │ │ ├── s_nearbyintf-vis3.S │ │ │ │ │ ├── s_nearbyintf.S │ │ │ │ │ ├── s_rint-vis3.S │ │ │ │ │ ├── s_rint.S │ │ │ │ │ ├── s_rintf-vis3.S │ │ │ │ │ ├── s_rintf.S │ │ │ │ │ ├── s_trunc-vis3.S │ │ │ │ │ ├── s_trunc.S │ │ │ │ │ ├── s_truncf-vis3.S │ │ │ │ │ ├── s_truncf.S │ │ │ │ │ ├── w_sqrt-vis3.S │ │ │ │ │ ├── w_sqrt.S │ │ │ │ │ ├── w_sqrtf-vis3.S │ │ │ │ │ └── w_sqrtf.S │ │ │ │ ├── s_ceil.S │ │ │ │ ├── s_ceilf.S │ │ │ │ ├── s_fabs.S │ │ │ │ ├── s_fdim.S │ │ │ │ ├── s_fdimf.S │ │ │ │ ├── s_floor.S │ │ │ │ ├── s_floorf.S │ │ │ │ ├── s_fmax.S │ │ │ │ ├── s_fmaxf.S │ │ │ │ ├── s_fmin.S │ │ │ │ ├── s_fminf.S │ │ │ │ ├── s_isnan.S │ │ │ │ ├── s_llrint.S │ │ │ │ ├── s_llrintf.S │ │ │ │ ├── s_lrint.S │ │ │ │ ├── s_lrintf.S │ │ │ │ ├── s_nearbyint.S │ │ │ │ ├── s_nearbyintf.S │ │ │ │ ├── s_rint.S │ │ │ │ ├── s_rintf.S │ │ │ │ ├── s_trunc.S │ │ │ │ ├── s_truncf.S │ │ │ │ ├── w_sqrt.S │ │ │ │ └── w_sqrtf.S │ │ │ ├── hp-timing.c │ │ │ ├── hp-timing.h │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── mul_1.S │ │ │ ├── multiarch │ │ │ │ ├── Makefile │ │ │ │ ├── ifunc-impl-list.c │ │ │ │ ├── md5-block.c │ │ │ │ ├── md5-crop.S │ │ │ │ ├── memcpy-niagara1.S │ │ │ │ ├── memcpy-niagara2.S │ │ │ │ ├── memcpy-niagara4.S │ │ │ │ ├── memcpy-ultra3.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset-niagara1.S │ │ │ │ ├── memset-niagara4.S │ │ │ │ ├── memset.S │ │ │ │ ├── rtld-memcpy.c │ │ │ │ ├── rtld-memset.c │ │ │ │ ├── sha256-block.c │ │ │ │ ├── sha256-crop.S │ │ │ │ ├── sha512-block.c │ │ │ │ └── sha512-crop.S │ │ │ ├── rawmemchr.S │ │ │ ├── rem.S │ │ │ ├── rtld-memcpy.c │ │ │ ├── rtld-memset.c │ │ │ ├── sdiv.S │ │ │ ├── stpcpy.S │ │ │ ├── stpncpy.S │ │ │ ├── strcat.S │ │ │ ├── strchr.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ ├── strcspn.S │ │ │ ├── strlen.S │ │ │ ├── strncmp.S │ │ │ ├── strncpy.S │ │ │ ├── strpbrk.S │ │ │ ├── strrchr.c │ │ │ ├── strspn.S │ │ │ ├── submul_1.S │ │ │ ├── udiv.S │ │ │ ├── umul.S │ │ │ └── urem.S │ │ ├── stackguard-macros.h │ │ ├── start.S │ │ ├── stpcpy.S │ │ ├── strcat.S │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ ├── strrchr.c │ │ ├── sub_n.S │ │ ├── submul_1.S │ │ ├── tls-macros.h │ │ ├── tst-audit.h │ │ ├── udiv.S │ │ ├── umul.S │ │ └── urem.S │ ├── sparc64 │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── align-cpy.S │ │ ├── backtrace.h │ │ ├── bits │ │ │ ├── atomic.h │ │ │ └── wordsize.h │ │ ├── bzero.c │ │ ├── dl-irel.h │ │ ├── dl-machine.h │ │ ├── dl-plt.h │ │ ├── dl-trampoline.S │ │ ├── fpu │ │ │ ├── e_sqrtl.c │ │ │ ├── multiarch │ │ │ │ ├── Makefile │ │ │ │ ├── s_ceil-vis2.S │ │ │ │ ├── s_ceil-vis3.S │ │ │ │ ├── s_ceil.S │ │ │ │ ├── s_ceilf-vis2.S │ │ │ │ ├── s_ceilf-vis3.S │ │ │ │ ├── s_ceilf.S │ │ │ │ ├── s_finite-vis3.S │ │ │ │ ├── s_finite.S │ │ │ │ ├── s_finitef-vis3.S │ │ │ │ ├── s_finitef.S │ │ │ │ ├── s_floor-vis2.S │ │ │ │ ├── s_floor-vis3.S │ │ │ │ ├── s_floor.S │ │ │ │ ├── s_floorf-vis2.S │ │ │ │ ├── s_floorf-vis3.S │ │ │ │ ├── s_floorf.S │ │ │ │ ├── s_fma-vis3.S │ │ │ │ ├── s_fma.c │ │ │ │ ├── s_fmaf-vis3.S │ │ │ │ ├── s_fmaf.c │ │ │ │ ├── s_fmax-vis3.S │ │ │ │ ├── s_fmax.S │ │ │ │ ├── s_fmaxf-vis3.S │ │ │ │ ├── s_fmaxf.S │ │ │ │ ├── s_fmin-vis3.S │ │ │ │ ├── s_fmin.S │ │ │ │ ├── s_fminf-vis3.S │ │ │ │ ├── s_fminf.S │ │ │ │ ├── s_isinf-vis3.S │ │ │ │ ├── s_isinf.S │ │ │ │ ├── s_isinff-vis3.S │ │ │ │ ├── s_isinff.S │ │ │ │ ├── s_isnan-vis3.S │ │ │ │ ├── s_isnan.S │ │ │ │ ├── s_isnanf-vis3.S │ │ │ │ ├── s_isnanf.S │ │ │ │ ├── s_lrint-vis3.S │ │ │ │ ├── s_lrint.S │ │ │ │ ├── s_lrintf-vis3.S │ │ │ │ ├── s_lrintf.S │ │ │ │ ├── s_nearbyint-vis3.S │ │ │ │ ├── s_nearbyint.S │ │ │ │ ├── s_nearbyintf-vis3.S │ │ │ │ ├── s_nearbyintf.S │ │ │ │ ├── s_rint-vis3.S │ │ │ │ ├── s_rint.S │ │ │ │ ├── s_rintf-vis3.S │ │ │ │ ├── s_rintf.S │ │ │ │ ├── s_signbit-vis3.S │ │ │ │ ├── s_signbit.S │ │ │ │ ├── s_signbitf-vis3.S │ │ │ │ ├── s_signbitf.S │ │ │ │ ├── s_trunc-vis3.S │ │ │ │ ├── s_trunc.S │ │ │ │ ├── s_truncf-vis3.S │ │ │ │ └── s_truncf.S │ │ │ ├── s_ceil.S │ │ │ ├── s_ceilf.S │ │ │ ├── s_copysign.S │ │ │ ├── s_copysignf.S │ │ │ ├── s_fabs.c │ │ │ ├── s_fabsf.c │ │ │ ├── s_fabsl.c │ │ │ ├── s_fdim.S │ │ │ ├── s_fdimf.S │ │ │ ├── s_finite.S │ │ │ ├── s_finitef.S │ │ │ ├── s_floor.S │ │ │ ├── s_floorf.S │ │ │ ├── s_fma.c │ │ │ ├── s_fmax.S │ │ │ ├── s_fmaxf.S │ │ │ ├── s_fmin.S │ │ │ ├── s_fminf.S │ │ │ ├── s_isinf.S │ │ │ ├── s_isinff.S │ │ │ ├── s_isnan.S │ │ │ ├── s_isnanf.S │ │ │ ├── s_llrint.S │ │ │ ├── s_llrintf.S │ │ │ ├── s_lrint.S │ │ │ ├── s_lrintf.S │ │ │ ├── s_nearbyint.S │ │ │ ├── s_nearbyintf.S │ │ │ ├── s_rint.S │ │ │ ├── s_rintf.S │ │ │ ├── s_signbit.S │ │ │ ├── s_signbitf.S │ │ │ ├── s_signbitl.S │ │ │ ├── s_trunc.S │ │ │ ├── s_truncf.S │ │ │ ├── w_sqrt.S │ │ │ └── w_sqrtf.S │ │ ├── hp-timing.c │ │ ├── hp-timing.h │ │ ├── jmpbuf-unwind.h │ │ ├── lshift.S │ │ ├── memchr.S │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── mul_1.S │ │ ├── multiarch │ │ │ ├── Makefile │ │ │ ├── add_n-vis3.S │ │ │ ├── add_n.S │ │ │ ├── addmul_1-vis3.S │ │ │ ├── addmul_1.S │ │ │ ├── ifunc-impl-list.c │ │ │ ├── md5-block.c │ │ │ ├── md5-crop.S │ │ │ ├── memcpy-niagara1.S │ │ │ ├── memcpy-niagara2.S │ │ │ ├── memcpy-niagara4.S │ │ │ ├── memcpy-ultra3.S │ │ │ ├── memcpy.S │ │ │ ├── memset-niagara1.S │ │ │ ├── memset-niagara4.S │ │ │ ├── memset.S │ │ │ ├── mul_1-vis3.S │ │ │ ├── mul_1.S │ │ │ ├── rtld-memcpy.c │ │ │ ├── rtld-memset.c │ │ │ ├── sha256-block.c │ │ │ ├── sha256-crop.S │ │ │ ├── sha512-block.c │ │ │ ├── sha512-crop.S │ │ │ ├── sub_n-vis3.S │ │ │ ├── sub_n.S │ │ │ ├── submul_1-vis3.S │ │ │ └── submul_1.S │ │ ├── rawmemchr.S │ │ ├── rshift.S │ │ ├── rtld-memcpy.c │ │ ├── rtld-memset.c │ │ ├── soft-fp │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── e_ilogbl.c │ │ │ ├── qp_add.c │ │ │ ├── qp_cmp.c │ │ │ ├── qp_cmpe.c │ │ │ ├── qp_div.c │ │ │ ├── qp_dtoq.c │ │ │ ├── qp_feq.c │ │ │ ├── qp_fge.c │ │ │ ├── qp_fgt.c │ │ │ ├── qp_fle.c │ │ │ ├── qp_flt.c │ │ │ ├── qp_fne.c │ │ │ ├── qp_itoq.c │ │ │ ├── qp_mul.c │ │ │ ├── qp_neg.S │ │ │ ├── qp_qtod.c │ │ │ ├── qp_qtoi.c │ │ │ ├── qp_qtos.c │ │ │ ├── qp_qtoui.c │ │ │ ├── qp_qtoux.c │ │ │ ├── qp_qtox.c │ │ │ ├── qp_sqrt.c │ │ │ ├── qp_stoq.c │ │ │ ├── qp_sub.c │ │ │ ├── qp_uitoq.c │ │ │ ├── qp_util.c │ │ │ ├── qp_uxtoq.c │ │ │ ├── qp_xtoq.c │ │ │ ├── s_frexpl.c │ │ │ ├── s_scalblnl.c │ │ │ ├── s_scalbnl.c │ │ │ └── sfp-machine.h │ │ ├── stackguard-macros.h │ │ ├── start.S │ │ ├── stpcpy.S │ │ ├── stpncpy.S │ │ ├── strcat.S │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strcspn.S │ │ ├── strlen.S │ │ ├── strncmp.S │ │ ├── strncpy.S │ │ ├── strpbrk.S │ │ ├── strrchr.c │ │ ├── strspn.S │ │ ├── sub_n.S │ │ ├── submul_1.S │ │ ├── tls-macros.h │ │ └── tst-audit.h │ ├── stackinfo.h │ ├── sys │ │ └── trap.h │ └── sysdep.h ├── unix │ ├── Implies │ ├── Makefile │ ├── Subdirs │ ├── bsd │ │ ├── Implies │ │ ├── bits │ │ │ ├── posix_opt.h │ │ │ ├── signum.h │ │ │ └── stat.h │ │ ├── bsd4.4 │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── bits │ │ │ │ ├── errno.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── sockaddr.h │ │ │ │ └── socket.h │ │ │ ├── cmsg_nxthdr.c │ │ │ ├── freebsd │ │ │ │ ├── bits │ │ │ │ │ ├── environments.h │ │ │ │ │ └── typesizes.h │ │ │ │ └── sys │ │ │ │ │ └── sysmacros.h │ │ │ ├── sigblock.c │ │ │ ├── sigsetmask.c │ │ │ ├── sigvec.c │ │ │ ├── syscalls.list │ │ │ ├── tcdrain.c │ │ │ ├── tcgetattr.c │ │ │ ├── tcsetattr.c │ │ │ ├── wait.c │ │ │ ├── wait3.c │ │ │ └── waitpid.c │ │ ├── bsdstat.h │ │ ├── bsdtty.h │ │ ├── clock.c │ │ ├── ftime.c │ │ ├── getpt.c │ │ ├── gtty.c │ │ ├── i386 │ │ │ ├── vfork.S │ │ │ └── wait3.S │ │ ├── init-posix.c │ │ ├── poll.c │ │ ├── ptsname.c │ │ ├── seekdir.c │ │ ├── setegid.c │ │ ├── seteuid.c │ │ ├── setgid.c │ │ ├── setrgid.c │ │ ├── setruid.c │ │ ├── setsid.c │ │ ├── setuid.c │ │ ├── sigaction.c │ │ ├── sigprocmask.c │ │ ├── sigsuspend.c │ │ ├── stty.c │ │ ├── sys │ │ │ └── reboot.h │ │ ├── syscalls.list │ │ ├── tcflow.c │ │ ├── tcflush.c │ │ ├── tcgetpgrp.c │ │ ├── tcsendbrk.c │ │ ├── tcsetpgrp.c │ │ ├── telldir.c │ │ ├── times.c │ │ ├── ualarm.c │ │ ├── unlockpt.c │ │ └── usleep.c │ ├── clock_gettime.c │ ├── clock_nanosleep.c │ ├── clock_settime.c │ ├── confstr.h │ ├── get_child_max.c │ ├── getlogin.c │ ├── getlogin_r.c │ ├── getpagesize.c │ ├── grantpt.c │ ├── i386 │ │ ├── sysdep.S │ │ └── sysdep.h │ ├── inet │ │ └── Subdirs │ ├── make-syscalls.sh │ ├── powerpc │ │ └── sysdep.h │ ├── s-proto-cancel.S │ ├── s-proto.S │ ├── setxid.h │ ├── sh │ │ ├── sysdep.S │ │ └── sysdep.h │ ├── sockatmark.c │ ├── stime.c │ ├── syscall-template.S │ ├── syscall.S │ ├── syscalls.list │ ├── sysdep.h │ ├── sysv │ │ └── linux │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── _G_config.h │ │ │ ├── _exit.c │ │ │ ├── a.out.h │ │ │ ├── accept.S │ │ │ ├── accept4.c │ │ │ ├── adjtime.c │ │ │ ├── aio_sigqueue.c │ │ │ ├── bind.S │ │ │ ├── bits │ │ │ ├── a.out.h │ │ │ ├── dirent.h │ │ │ ├── epoll.h │ │ │ ├── errno.h │ │ │ ├── eventfd.h │ │ │ ├── fcntl-linux.h │ │ │ ├── fcntl.h │ │ │ ├── in.h │ │ │ ├── initspin.h │ │ │ ├── inotify.h │ │ │ ├── ioctl-types.h │ │ │ ├── ioctls.h │ │ │ ├── ipc.h │ │ │ ├── local_lim.h │ │ │ ├── mman-linux.h │ │ │ ├── mqueue.h │ │ │ ├── msq.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── posix_opt.h │ │ │ ├── resource.h │ │ │ ├── sched.h │ │ │ ├── sem.h │ │ │ ├── shm.h │ │ │ ├── sigaction.h │ │ │ ├── sigcontext.h │ │ │ ├── siginfo.h │ │ │ ├── signalfd.h │ │ │ ├── signum.h │ │ │ ├── sigset.h │ │ │ ├── sigstack.h │ │ │ ├── socket.h │ │ │ ├── socket_type.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ ├── sys_errlist.h │ │ │ ├── sysctl.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timerfd.h │ │ │ ├── timex.h │ │ │ ├── uio.h │ │ │ ├── utsname.h │ │ │ └── waitflags.h │ │ │ ├── check_native.c │ │ │ ├── check_pf.c │ │ │ ├── clock.c │ │ │ ├── clock_getcpuclockid.c │ │ │ ├── clock_getres.c │ │ │ ├── clock_gettime.c │ │ │ ├── clock_nanosleep.c │ │ │ ├── clock_settime.c │ │ │ ├── cmsg_nxthdr.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── connect.S │ │ │ ├── device-nrs.h │ │ │ ├── dl-brk.c │ │ │ ├── dl-execstack.c │ │ │ ├── dl-fxstatat64.c │ │ │ ├── dl-getcwd.c │ │ │ ├── dl-librecon.h │ │ │ ├── dl-openat64.c │ │ │ ├── dl-opendir.c │ │ │ ├── dl-origin.c │ │ │ ├── dl-osinfo.h │ │ │ ├── dl-sbrk.c │ │ │ ├── dl-sysdep.c │ │ │ ├── dl-sysdep.h │ │ │ ├── dl-vdso.c │ │ │ ├── dl-vdso.h │ │ │ ├── dl-writev.h │ │ │ ├── epoll_pwait.c │ │ │ ├── errqueue.h │ │ │ ├── eventfd.c │ │ │ ├── eventfd_read.c │ │ │ ├── eventfd_write.c │ │ │ ├── execve.c │ │ │ ├── exit-thread.S │ │ │ ├── faccessat.c │ │ │ ├── fallocate.c │ │ │ ├── fallocate64.c │ │ │ ├── fatal-prepare.h │ │ │ ├── fchmodat.c │ │ │ ├── fchownat.c │ │ │ ├── fcntl.c │ │ │ ├── fd_to_filename.h │ │ │ ├── fexecve.c │ │ │ ├── fips-private.h │ │ │ ├── fpathconf.c │ │ │ ├── fstatfs64.c │ │ │ ├── fstatvfs.c │ │ │ ├── fstatvfs64.c │ │ │ ├── ftime.c │ │ │ ├── ftruncate64.c │ │ │ ├── futimens.c │ │ │ ├── futimes.c │ │ │ ├── futimesat.c │ │ │ ├── fxstat.c │ │ │ ├── fxstat64.c │ │ │ ├── fxstatat.c │ │ │ ├── fxstatat64.c │ │ │ ├── gai_sigqueue.c │ │ │ ├── getclktck.c │ │ │ ├── getcwd.c │ │ │ ├── getdents.c │ │ │ ├── getdents64.c │ │ │ ├── getdirentries.c │ │ │ ├── getdirentries64.c │ │ │ ├── getdtsz.c │ │ │ ├── gethostid.c │ │ │ ├── getipv4sourcefilter.c │ │ │ ├── getloadavg.c │ │ │ ├── getlogin.c │ │ │ ├── getlogin_r.c │ │ │ ├── getpagesize.c │ │ │ ├── getpeername.S │ │ │ ├── getpriority.c │ │ │ ├── getpt.c │ │ │ ├── getrlimit64.c │ │ │ ├── getsockname.S │ │ │ ├── getsockopt.S │ │ │ ├── getsourcefilter.c │ │ │ ├── getsysstats.c │ │ │ ├── grantpt.c │ │ │ ├── i386 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.S │ │ │ ├── _exit.S │ │ │ ├── accept4.S │ │ │ ├── alphasort64.c │ │ │ ├── brk.c │ │ │ ├── call_fallocate.S │ │ │ ├── call_pselect6.S │ │ │ ├── call_sync_file_range.S │ │ │ ├── chown.c │ │ │ ├── clone.S │ │ │ ├── dl-librecon.h │ │ │ ├── dl-procinfo.h │ │ │ ├── epoll_pwait.S │ │ │ ├── fallocate.c │ │ │ ├── fallocate64.c │ │ │ ├── fchown.c │ │ │ ├── fchownat.c │ │ │ ├── fcntl.c │ │ │ ├── fxstat.c │ │ │ ├── fxstatat.c │ │ │ ├── get_clockfreq.c │ │ │ ├── getcontext.S │ │ │ ├── getdents64.c │ │ │ ├── getegid.c │ │ │ ├── geteuid.c │ │ │ ├── getgid.c │ │ │ ├── getgroups.c │ │ │ ├── getmsg.c │ │ │ ├── getresgid.c │ │ │ ├── getresuid.c │ │ │ ├── getrlimit64.c │ │ │ ├── getuid.c │ │ │ ├── glob64.c │ │ │ ├── i686 │ │ │ │ └── sysconf.c │ │ │ ├── internal_accept4.S │ │ │ ├── lchown.c │ │ │ ├── ldconfig.h │ │ │ ├── lockf64.c │ │ │ ├── lxstat.c │ │ │ ├── makecontext.S │ │ │ ├── mmap.S │ │ │ ├── mmap64.S │ │ │ ├── msgctl.c │ │ │ ├── nptl │ │ │ │ ├── c++-types.data │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ └── localplt.data │ │ │ ├── olddirent.h │ │ │ ├── oldgetrlimit64.c │ │ │ ├── posix_fadvise64.S │ │ │ ├── posix_fallocate.c │ │ │ ├── posix_fallocate64.c │ │ │ ├── profil-counter.h │ │ │ ├── pselect.c │ │ │ ├── putmsg.c │ │ │ ├── readdir64.c │ │ │ ├── readdir64_r.c │ │ │ ├── readelflib.c │ │ │ ├── register-dump.h │ │ │ ├── scandir64.c │ │ │ ├── semctl.c │ │ │ ├── semtimedop.S │ │ │ ├── setcontext.S │ │ │ ├── setegid.c │ │ │ ├── seteuid.c │ │ │ ├── setfsgid.c │ │ │ ├── setfsuid.c │ │ │ ├── setgid.c │ │ │ ├── setgroups.c │ │ │ ├── setregid.c │ │ │ ├── setresgid.c │ │ │ ├── setresuid.c │ │ │ ├── setreuid.c │ │ │ ├── setrlimit.c │ │ │ ├── setuid.c │ │ │ ├── shmctl.c │ │ │ ├── sigaction.c │ │ │ ├── sigcontextinfo.h │ │ │ ├── socket.S │ │ │ ├── swapcontext.S │ │ │ ├── sync_file_range.c │ │ │ ├── syscall.S │ │ │ ├── syscalls.list │ │ │ ├── sysconf.c │ │ │ ├── sysdep.S │ │ │ ├── sysdep.h │ │ │ ├── ucontext_i.sym │ │ │ ├── versionsort64.c │ │ │ ├── vfork.S │ │ │ └── xstat.c │ │ │ ├── if_index.c │ │ │ ├── ifaddrs.c │ │ │ ├── ifreq.c │ │ │ ├── internal_accept4.S │ │ │ ├── internal_recvmmsg.S │ │ │ ├── internal_sendmmsg.S │ │ │ ├── internal_statvfs.c │ │ │ ├── internal_statvfs64.c │ │ │ ├── ipc_priv.h │ │ │ ├── kernel-features.h │ │ │ ├── kernel-posix-cpu-timers.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_termios.h │ │ │ ├── ldd-rewrite.sed │ │ │ ├── lddlibc4.c │ │ │ ├── ldsodefs.h │ │ │ ├── libc_fatal.c │ │ │ ├── linkat.c │ │ │ ├── linux_fsinfo.h │ │ │ ├── listen.S │ │ │ ├── llseek.c │ │ │ ├── local-setxid.h │ │ │ ├── lseek64.c │ │ │ ├── lutimes.c │ │ │ ├── lxstat.c │ │ │ ├── lxstat64.c │ │ │ ├── makedev.c │ │ │ ├── malloc-sysdep.h │ │ │ ├── mkdirat.c │ │ │ ├── mmap64.c │ │ │ ├── mq_close.c │ │ │ ├── mq_getattr.c │ │ │ ├── mq_notify.c │ │ │ ├── mq_open.c │ │ │ ├── mq_receive.c │ │ │ ├── mq_send.c │ │ │ ├── mq_unlink.c │ │ │ ├── msgctl.c │ │ │ ├── msgget.c │ │ │ ├── msgrcv.c │ │ │ ├── msgsnd.c │ │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if_arp.h │ │ │ ├── if_packet.h │ │ │ ├── if_ppp.h │ │ │ ├── if_shaper.h │ │ │ ├── if_slip.h │ │ │ ├── ppp-comp.h │ │ │ ├── ppp_defs.h │ │ │ └── route.h │ │ │ ├── netash │ │ │ └── ash.h │ │ │ ├── netatalk │ │ │ └── at.h │ │ │ ├── netax25 │ │ │ └── ax25.h │ │ │ ├── neteconet │ │ │ └── ec.h │ │ │ ├── netinet │ │ │ ├── if_ether.h │ │ │ ├── if_fddi.h │ │ │ └── if_tr.h │ │ │ ├── netipx │ │ │ └── ipx.h │ │ │ ├── netiucv │ │ │ └── iucv.h │ │ │ ├── netlinkaccess.h │ │ │ ├── netpacket │ │ │ └── packet.h │ │ │ ├── netrom │ │ │ └── netrom.h │ │ │ ├── netrose │ │ │ └── rose.h │ │ │ ├── nfs │ │ │ └── nfs.h │ │ │ ├── nice.c │ │ │ ├── not-cancel.h │ │ │ ├── nscd_setup_thread.c │ │ │ ├── ntp_gettime.c │ │ │ ├── ntp_gettimex.c │ │ │ ├── open64.c │ │ │ ├── openat.c │ │ │ ├── openat64.c │ │ │ ├── opendir.c │ │ │ ├── opensock.c │ │ │ ├── pathconf.c │ │ │ ├── pathconf.h │ │ │ ├── paths.h │ │ │ ├── posix_fadvise.c │ │ │ ├── posix_fadvise64.c │ │ │ ├── posix_fallocate.c │ │ │ ├── posix_fallocate64.c │ │ │ ├── posix_madvise.c │ │ │ ├── powerpc │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── aix │ │ │ │ ├── aix-dirent.h │ │ │ │ ├── aix-errno.h │ │ │ │ ├── aix-stat.h │ │ │ │ ├── aix-termios.h │ │ │ │ ├── direntconv.c │ │ │ │ ├── errnoconv.c │ │ │ │ ├── statconv.c │ │ │ │ ├── tcgetattr.c │ │ │ │ └── tcsetattr.c │ │ │ ├── bits │ │ │ │ ├── environments.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── ioctl-types.h │ │ │ │ ├── ipc.h │ │ │ │ ├── libc-vdso.h │ │ │ │ ├── mman.h │ │ │ │ ├── msq.h │ │ │ │ ├── ppc.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── stat.h │ │ │ │ ├── termios.h │ │ │ │ └── wordsize.h │ │ │ ├── chown.c │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── dl-brk.S │ │ │ ├── dl-cache.h │ │ │ ├── dl-sysdep.c │ │ │ ├── fchownat.c │ │ │ ├── get_clockfreq.c │ │ │ ├── get_timebase_freq.c │ │ │ ├── getdents64.c │ │ │ ├── getmsg.c │ │ │ ├── getrlimit64.c │ │ │ ├── gettimeofday.c │ │ │ ├── init-first.c │ │ │ ├── ioctl.c │ │ │ ├── ipc_priv.h │ │ │ ├── kernel_termios.h │ │ │ ├── lchown.S │ │ │ ├── ldconfig.h │ │ │ ├── ldd-rewrite.sed │ │ │ ├── libc-start.c │ │ │ ├── nldbl-abi.h │ │ │ ├── oldgetrlimit64.c │ │ │ ├── powerpc32 │ │ │ │ ├── 970 │ │ │ │ │ └── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── a2 │ │ │ │ │ └── Implies │ │ │ │ ├── brk.S │ │ │ │ ├── cell │ │ │ │ │ ├── Implies │ │ │ │ │ └── fpu │ │ │ │ │ │ └── Implies │ │ │ │ ├── clone.S │ │ │ │ ├── fcntl.c │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fe_mask.c │ │ │ │ │ ├── fe_nomask.c │ │ │ │ │ └── nptl │ │ │ │ │ │ ├── c++-types.data │ │ │ │ │ │ ├── ld.abilist │ │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ │ ├── libc.abilist │ │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ │ ├── libm.abilist │ │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ │ ├── librt.abilist │ │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ │ └── localplt.data │ │ │ │ ├── ftruncate64.c │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── getcontext-common.S │ │ │ │ ├── getcontext.S │ │ │ │ ├── glob64.c │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── lockf64.c │ │ │ │ ├── lxstat.c │ │ │ │ ├── makecontext.S │ │ │ │ ├── posix_fadvise.c │ │ │ │ ├── posix_fadvise64.c │ │ │ │ ├── power4 │ │ │ │ │ └── Implies │ │ │ │ ├── power5+ │ │ │ │ │ └── Implies │ │ │ │ ├── power5 │ │ │ │ │ └── Implies │ │ │ │ ├── power6 │ │ │ │ │ └── Implies │ │ │ │ ├── power6x │ │ │ │ │ └── Implies │ │ │ │ ├── power7 │ │ │ │ │ └── Implies │ │ │ │ ├── power8 │ │ │ │ │ └── Implies │ │ │ │ ├── pread.c │ │ │ │ ├── pread64.c │ │ │ │ ├── pwrite.c │ │ │ │ ├── pwrite64.c │ │ │ │ ├── scandir64.c │ │ │ │ ├── setcontext-common.S │ │ │ │ ├── setcontext.S │ │ │ │ ├── socket.S │ │ │ │ ├── swapcontext-common.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.h │ │ │ │ ├── truncate64.c │ │ │ │ ├── ucontext_i.sym │ │ │ │ ├── vfork.S │ │ │ │ └── xstat.c │ │ │ ├── powerpc64 │ │ │ │ ├── 970 │ │ │ │ │ └── Implies │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── a2 │ │ │ │ │ └── Implies │ │ │ │ ├── brk.S │ │ │ │ ├── cell │ │ │ │ │ ├── Implies │ │ │ │ │ └── fpu │ │ │ │ │ │ └── Implies │ │ │ │ ├── clone.S │ │ │ │ ├── dl-cache.h │ │ │ │ ├── fcntl.c │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fe_mask.c │ │ │ │ │ └── fe_nomask.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── makecontext.S │ │ │ │ ├── nptl │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ └── localplt.data │ │ │ │ ├── power4 │ │ │ │ │ └── Implies │ │ │ │ ├── power5+ │ │ │ │ │ └── Implies │ │ │ │ ├── power5 │ │ │ │ │ └── Implies │ │ │ │ ├── power6 │ │ │ │ │ └── Implies │ │ │ │ ├── power6x │ │ │ │ │ └── Implies │ │ │ │ ├── power7 │ │ │ │ │ └── Implies │ │ │ │ ├── power8 │ │ │ │ │ └── Implies │ │ │ │ ├── pread.c │ │ │ │ ├── pread64.c │ │ │ │ ├── pwrite.c │ │ │ │ ├── pwrite64.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── socket.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sync_file_range.c │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.h │ │ │ │ ├── ucontext_i.sym │ │ │ │ ├── umount.c │ │ │ │ └── vfork.S │ │ │ ├── profil-counter.h │ │ │ ├── putmsg.c │ │ │ ├── readdir64.c │ │ │ ├── readdir64_r.c │ │ │ ├── readelflib.c │ │ │ ├── rt-sysdep.c │ │ │ ├── sched_getcpu.c │ │ │ ├── setrlimit.c │ │ │ ├── sigcontextinfo.h │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── syscalls.list │ │ │ ├── sysdep.c │ │ │ ├── test-gettimebasefreq.c │ │ │ └── time.c │ │ │ ├── ppoll.c │ │ │ ├── pread.c │ │ │ ├── pread64.c │ │ │ ├── preadv.c │ │ │ ├── preadv64.c │ │ │ ├── prlimit.c │ │ │ ├── prof-freq.c │ │ │ ├── profil.c │ │ │ ├── pselect.c │ │ │ ├── ptrace.c │ │ │ ├── ptsname.c │ │ │ ├── pwrite.c │ │ │ ├── pwrite64.c │ │ │ ├── pwritev.c │ │ │ ├── pwritev64.c │ │ │ ├── readahead.c │ │ │ ├── readdir64.c │ │ │ ├── readdir64_r.c │ │ │ ├── readlinkat.c │ │ │ ├── readonly-area.c │ │ │ ├── readv.c │ │ │ ├── reboot.c │ │ │ ├── recv.S │ │ │ ├── recvfrom.S │ │ │ ├── recvmmsg.c │ │ │ ├── recvmsg.S │ │ │ ├── remove.c │ │ │ ├── renameat.c │ │ │ ├── s390 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── bits │ │ │ │ ├── elfclass.h │ │ │ │ ├── environments.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── ipc.h │ │ │ │ ├── libc-vdso.h │ │ │ │ ├── mman.h │ │ │ │ ├── msq.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── typesizes.h │ │ │ │ ├── utmp.h │ │ │ │ └── utmpx.h │ │ │ ├── brk.c │ │ │ ├── dl-cache.h │ │ │ ├── dl-procinfo.h │ │ │ ├── fpu │ │ │ │ ├── Implies │ │ │ │ └── s_fma.c │ │ │ ├── gettimeofday.c │ │ │ ├── init-first.c │ │ │ ├── ldconfig.h │ │ │ ├── ldd-rewrite.sed │ │ │ ├── nldbl-abi.h │ │ │ ├── opensock.c │ │ │ ├── readelflib.c │ │ │ ├── rt-sysdep.S │ │ │ ├── s390-32 │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.c │ │ │ │ ├── __makecontext_ret.S │ │ │ │ ├── alphasort64.c │ │ │ │ ├── chown.c │ │ │ │ ├── clone.S │ │ │ │ ├── fchown.c │ │ │ │ ├── fchownat.c │ │ │ │ ├── fcntl.c │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── getdents64.c │ │ │ │ ├── getegid.c │ │ │ │ ├── geteuid.c │ │ │ │ ├── getgid.c │ │ │ │ ├── getgroups.c │ │ │ │ ├── getresgid.c │ │ │ │ ├── getresuid.c │ │ │ │ ├── getrlimit64.c │ │ │ │ ├── getuid.c │ │ │ │ ├── getutent.c │ │ │ │ ├── getutent_r.c │ │ │ │ ├── getutid.c │ │ │ │ ├── getutid_r.c │ │ │ │ ├── getutline.c │ │ │ │ ├── getutline_r.c │ │ │ │ ├── getutmp.c │ │ │ │ ├── getutxent.c │ │ │ │ ├── getutxid.c │ │ │ │ ├── getutxline.c │ │ │ │ ├── lchown.c │ │ │ │ ├── lockf64.c │ │ │ │ ├── login.c │ │ │ │ ├── login32.c │ │ │ │ ├── lxstat.c │ │ │ │ ├── makecontext.c │ │ │ │ ├── mmap.S │ │ │ │ ├── mmap64.S │ │ │ │ ├── msgctl.c │ │ │ │ ├── nptl │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ └── localplt.data │ │ │ │ ├── oldgetrlimit64.c │ │ │ │ ├── posix_fadvise64.c │ │ │ │ ├── profil-counter.h │ │ │ │ ├── pututxline.c │ │ │ │ ├── readdir64.c │ │ │ │ ├── readdir64_r.c │ │ │ │ ├── register-dump.h │ │ │ │ ├── scandir64.c │ │ │ │ ├── semctl.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── setegid.c │ │ │ │ ├── seteuid.c │ │ │ │ ├── setfsgid.c │ │ │ │ ├── setfsuid.c │ │ │ │ ├── setgid.c │ │ │ │ ├── setgroups.c │ │ │ │ ├── setregid.c │ │ │ │ ├── setresgid.c │ │ │ │ ├── setresuid.c │ │ │ │ ├── setreuid.c │ │ │ │ ├── setrlimit.c │ │ │ │ ├── setuid.c │ │ │ │ ├── shmctl.c │ │ │ │ ├── socket.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── updwtmp.c │ │ │ │ ├── updwtmpx.c │ │ │ │ ├── utmp-compat.h │ │ │ │ ├── utmp-convert.h │ │ │ │ ├── utmp32.c │ │ │ │ ├── utmp32.h │ │ │ │ ├── utmpx-convert.h │ │ │ │ ├── utmpx32.c │ │ │ │ ├── utmpx32.h │ │ │ │ ├── versionsort64.c │ │ │ │ └── xstat.c │ │ │ ├── s390-64 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.c │ │ │ │ ├── __makecontext_ret.S │ │ │ │ ├── clone.S │ │ │ │ ├── dl-cache.h │ │ │ │ ├── getcontext.S │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── makecontext.c │ │ │ │ ├── mmap.S │ │ │ │ ├── nptl │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ └── localplt.data │ │ │ │ ├── profil-counter.h │ │ │ │ ├── register-dump.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── sigaction.c │ │ │ │ ├── sigpending.c │ │ │ │ ├── sigprocmask.c │ │ │ │ ├── socket.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.S │ │ │ │ └── sysdep.h │ │ │ ├── sa_len.c │ │ │ ├── semtimedop.c │ │ │ ├── sigcontextinfo.h │ │ │ ├── sys │ │ │ │ ├── elf.h │ │ │ │ ├── procfs.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── system.c │ │ │ └── ucontext_i.sym │ │ │ ├── sa_len.c │ │ │ ├── sched_getaffinity.c │ │ │ ├── sched_getcpu.c │ │ │ ├── sched_setaffinity.c │ │ │ ├── scsi │ │ │ ├── scsi.h │ │ │ ├── scsi_ioctl.h │ │ │ └── sg.h │ │ │ ├── segfault.c │ │ │ ├── semctl.c │ │ │ ├── semget.c │ │ │ ├── semop.c │ │ │ ├── semtimedop.c │ │ │ ├── send.S │ │ │ ├── sendmmsg.c │ │ │ ├── sendmsg.S │ │ │ ├── sendto.S │ │ │ ├── setegid.c │ │ │ ├── seteuid.c │ │ │ ├── setgid.c │ │ │ ├── setgroups.c │ │ │ ├── sethostid.c │ │ │ ├── setipv4sourcefilter.c │ │ │ ├── setregid.c │ │ │ ├── setresgid.c │ │ │ ├── setresuid.c │ │ │ ├── setreuid.c │ │ │ ├── setrlimit64.c │ │ │ ├── setsockopt.S │ │ │ ├── setsourcefilter.c │ │ │ ├── setuid.c │ │ │ ├── sh │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.S │ │ │ ├── bits │ │ │ │ ├── atomic.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── mman.h │ │ │ │ └── shm.h │ │ │ ├── brk.c │ │ │ ├── chown.c │ │ │ ├── clone.S │ │ │ ├── fchown.c │ │ │ ├── fchownat.c │ │ │ ├── fcntl.c │ │ │ ├── fxstat.c │ │ │ ├── fxstatat.c │ │ │ ├── getegid.c │ │ │ ├── geteuid.c │ │ │ ├── getgid.c │ │ │ ├── getgroups.c │ │ │ ├── getresgid.c │ │ │ ├── getresuid.c │ │ │ ├── getrlimit64.c │ │ │ ├── getuid.c │ │ │ ├── lchown.c │ │ │ ├── lockf64.c │ │ │ ├── lxstat.c │ │ │ ├── makecontext.S │ │ │ ├── msgctl.c │ │ │ ├── nptl │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ └── libutil.abilist │ │ │ ├── pipe.S │ │ │ ├── pread.c │ │ │ ├── pread64.c │ │ │ ├── profil-counter.h │ │ │ ├── pwrite.c │ │ │ ├── pwrite64.c │ │ │ ├── semctl.c │ │ │ ├── setegid.c │ │ │ ├── seteuid.c │ │ │ ├── setfsgid.c │ │ │ ├── setfsuid.c │ │ │ ├── setgid.c │ │ │ ├── setgroups.c │ │ │ ├── setregid.c │ │ │ ├── setresgid.c │ │ │ ├── setresuid.c │ │ │ ├── setreuid.c │ │ │ ├── setrlimit.c │ │ │ ├── setuid.c │ │ │ ├── sh3 │ │ │ │ ├── getcontext.S │ │ │ │ ├── register-dump.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sys │ │ │ │ │ └── ucontext.h │ │ │ │ └── ucontext_i.sym │ │ │ ├── sh4 │ │ │ │ ├── getcontext.S │ │ │ │ ├── register-dump.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sys │ │ │ │ │ └── ucontext.h │ │ │ │ ├── sysdep.h │ │ │ │ └── ucontext_i.sym │ │ │ ├── shmctl.c │ │ │ ├── sigaltstack-offsets.sym │ │ │ ├── sigcontextinfo.h │ │ │ ├── socket.S │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── syscalls.list │ │ │ ├── sysdep.S │ │ │ ├── sysdep.h │ │ │ ├── vfork.S │ │ │ └── xstat.c │ │ │ ├── shm_open.c │ │ │ ├── shm_unlink.c │ │ │ ├── shmat.c │ │ │ ├── shmctl.c │ │ │ ├── shmdt.c │ │ │ ├── shmget.c │ │ │ ├── shutdown.S │ │ │ ├── sigaction.c │ │ │ ├── siglist.h │ │ │ ├── signal.c │ │ │ ├── signalfd.c │ │ │ ├── sigpending.c │ │ │ ├── sigprocmask.c │ │ │ ├── sigqueue.c │ │ │ ├── sigreturn.c │ │ │ ├── sigset-cvt-mask.h │ │ │ ├── sigstack.c │ │ │ ├── sigsuspend.c │ │ │ ├── sigtimedwait.c │ │ │ ├── sigwait.c │ │ │ ├── sigwaitinfo.c │ │ │ ├── sizes.h │ │ │ ├── sleep.c │ │ │ ├── socketcall.h │ │ │ ├── socketpair.S │ │ │ ├── sparc │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── a.out.h │ │ │ ├── bits │ │ │ │ ├── a.out.h │ │ │ │ ├── environments.h │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── inotify.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── ipc.h │ │ │ │ ├── mman.h │ │ │ │ ├── msq.h │ │ │ │ ├── poll.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── signum.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── socket_type.h │ │ │ │ ├── stat.h │ │ │ │ ├── termios.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── typesizes.h │ │ │ │ └── wordsize.h │ │ │ ├── dl-cache.h │ │ │ ├── fork.S │ │ │ ├── getshmlba.c │ │ │ ├── getsysstats.c │ │ │ ├── kernel_termios.h │ │ │ ├── ldd-rewrite.sed │ │ │ ├── readelflib.c │ │ │ ├── rt-sysdep.c │ │ │ ├── sparc32 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── brk.c │ │ │ │ ├── chown.c │ │ │ │ ├── clone.S │ │ │ │ ├── fchown.c │ │ │ │ ├── fchownat.c │ │ │ │ ├── fcntl.c │ │ │ │ ├── fpu │ │ │ │ │ └── Implies │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── getdents64.c │ │ │ │ ├── getegid.c │ │ │ │ ├── geteuid.c │ │ │ │ ├── getgid.c │ │ │ │ ├── getgroups.c │ │ │ │ ├── getuid.c │ │ │ │ ├── glob64.c │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── lchown.c │ │ │ │ ├── lockf64.c │ │ │ │ ├── lxstat.c │ │ │ │ ├── makecontext.c │ │ │ │ ├── msgctl.c │ │ │ │ ├── nldbl-abi.h │ │ │ │ ├── nptl │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ └── localplt.data │ │ │ │ ├── pipe.S │ │ │ │ ├── profil-counter.h │ │ │ │ ├── readdir64.c │ │ │ │ ├── readdir64_r.c │ │ │ │ ├── register-dump.h │ │ │ │ ├── scandir64.c │ │ │ │ ├── semctl.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── setegid.c │ │ │ │ ├── seteuid.c │ │ │ │ ├── setfsgid.c │ │ │ │ ├── setfsuid.c │ │ │ │ ├── setgid.c │ │ │ │ ├── setgroups.c │ │ │ │ ├── setregid.c │ │ │ │ ├── setresgid.c │ │ │ │ ├── setresuid.c │ │ │ │ ├── setreuid.c │ │ │ │ ├── setuid.c │ │ │ │ ├── shmctl.c │ │ │ │ ├── sigaction.c │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── socket.S │ │ │ │ ├── sparcv9 │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ └── get_clockfreq.c │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.h │ │ │ │ ├── ucontext_i.sym │ │ │ │ └── xstat.c │ │ │ ├── sparc64 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── __longjmp.S │ │ │ │ ├── __start_context.S │ │ │ │ ├── brk.S │ │ │ │ ├── bsd-_setjmp.S │ │ │ │ ├── bsd-setjmp.S │ │ │ │ ├── clone.S │ │ │ │ ├── dl-brk.S │ │ │ │ ├── dl-cache.h │ │ │ │ ├── dl-fxstatat64.c │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── get_clockfreq.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── longjmp.S │ │ │ │ ├── lxstat.c │ │ │ │ ├── makecontext.c │ │ │ │ ├── msgctl.c │ │ │ │ ├── msgrcv.c │ │ │ │ ├── nptl │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ └── localplt.data │ │ │ │ ├── pause.c │ │ │ │ ├── pipe.S │ │ │ │ ├── profil-counter.h │ │ │ │ ├── register-dump.h │ │ │ │ ├── semctl.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── shmctl.c │ │ │ │ ├── sigaction.c │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sigjmp.S │ │ │ │ ├── sigpending.c │ │ │ │ ├── sigprocmask.c │ │ │ │ ├── sizes.h │ │ │ │ ├── socket.S │ │ │ │ ├── swapcontext.c │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.h │ │ │ │ ├── time.c │ │ │ │ ├── ucontext_i.h │ │ │ │ ├── wordexp.c │ │ │ │ ├── xstat.c │ │ │ │ └── xstatconv.c │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── trap.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscalls.list │ │ │ ├── sysdep.c │ │ │ ├── sysdep.h │ │ │ ├── system.c │ │ │ └── vfork.S │ │ │ ├── speed.c │ │ │ ├── statfs64.c │ │ │ ├── statvfs.c │ │ │ ├── statvfs64.c │ │ │ ├── symlinkat.c │ │ │ ├── sync_file_range.c │ │ │ ├── sys │ │ │ ├── acct.h │ │ │ ├── epoll.h │ │ │ ├── eventfd.h │ │ │ ├── fanotify.h │ │ │ ├── fsuid.h │ │ │ ├── inotify.h │ │ │ ├── kd.h │ │ │ ├── kdaemon.h │ │ │ ├── klog.h │ │ │ ├── mount.h │ │ │ ├── pci.h │ │ │ ├── personality.h │ │ │ ├── prctl.h │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── quota.h │ │ │ ├── raw.h │ │ │ ├── reboot.h │ │ │ ├── signalfd.h │ │ │ ├── soundcard.h │ │ │ ├── swap.h │ │ │ ├── syscall.h │ │ │ ├── sysctl.h │ │ │ ├── sysinfo.h │ │ │ ├── sysmacros.h │ │ │ ├── timerfd.h │ │ │ ├── timex.h │ │ │ ├── ttydefaults.h │ │ │ ├── ultrasound.h │ │ │ ├── user.h │ │ │ └── vt.h │ │ │ ├── syscalls.list │ │ │ ├── sysconf.c │ │ │ ├── sysctl.c │ │ │ ├── sysctl.mk │ │ │ ├── syslog.c │ │ │ ├── system.c │ │ │ ├── tcdrain.c │ │ │ ├── tcflow.c │ │ │ ├── tcflush.c │ │ │ ├── tcgetattr.c │ │ │ ├── tcgetpgrp.c │ │ │ ├── tcsendbrk.c │ │ │ ├── tcsetattr.c │ │ │ ├── tcsetpgrp.c │ │ │ ├── termio.h │ │ │ ├── testrtsig.h │ │ │ ├── time.c │ │ │ ├── times.c │ │ │ ├── timespec_get.c │ │ │ ├── truncate64.c │ │ │ ├── tst-clone.c │ │ │ ├── tst-getcpu.c │ │ │ ├── ttyname.c │ │ │ ├── ttyname_r.c │ │ │ ├── ualarm.c │ │ │ ├── umount.S │ │ │ ├── umount2.S │ │ │ ├── unlinkat.c │ │ │ ├── unlockpt.c │ │ │ ├── updwtmp.c │ │ │ ├── usleep.c │ │ │ ├── ustat.c │ │ │ ├── utimensat.c │ │ │ ├── utimes.c │ │ │ ├── utmp_file.c │ │ │ ├── vfork.c │ │ │ ├── wait.c │ │ │ ├── wait3.c │ │ │ ├── waitid.c │ │ │ ├── waitpid.c │ │ │ ├── wordsize-64 │ │ │ ├── Versions │ │ │ ├── aio_read.c │ │ │ ├── aio_read64.c │ │ │ ├── aio_write.c │ │ │ ├── aio_write64.c │ │ │ ├── creat64.c │ │ │ ├── dl-fxstatat64.c │ │ │ ├── fallocate.c │ │ │ ├── fallocate64.c │ │ │ ├── fstatfs64.c │ │ │ ├── fstatvfs.c │ │ │ ├── fstatvfs64.c │ │ │ ├── ftruncate64.c │ │ │ ├── fxstat.c │ │ │ ├── fxstat64.c │ │ │ ├── fxstatat.c │ │ │ ├── fxstatat64.c │ │ │ ├── getdents.c │ │ │ ├── getdents64.c │ │ │ ├── getdirentries.c │ │ │ ├── getdirentries64.c │ │ │ ├── getrlimit64.c │ │ │ ├── glob64.c │ │ │ ├── internal_statvfs64.c │ │ │ ├── lio_listio.c │ │ │ ├── lio_listio64.c │ │ │ ├── lxstat.c │ │ │ ├── lxstat64.c │ │ │ ├── mmap64.c │ │ │ ├── open64.c │ │ │ ├── openat.c │ │ │ ├── openat64.c │ │ │ ├── posix_fadvise.c │ │ │ ├── posix_fadvise64.c │ │ │ ├── posix_fallocate.c │ │ │ ├── posix_fallocate64.c │ │ │ ├── pread64.c │ │ │ ├── preadv.c │ │ │ ├── preadv64.c │ │ │ ├── pwrite64.c │ │ │ ├── pwritev.c │ │ │ ├── pwritev64.c │ │ │ ├── readdir.c │ │ │ ├── readdir64.c │ │ │ ├── readdir64_r.c │ │ │ ├── readdir_r.c │ │ │ ├── sendfile64.c │ │ │ ├── setrlimit64.c │ │ │ ├── statfs64.c │ │ │ ├── statvfs.c │ │ │ ├── statvfs64.c │ │ │ ├── syscalls.list │ │ │ ├── truncate64.c │ │ │ ├── xstat.c │ │ │ └── xstat64.c │ │ │ ├── writev.c │ │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── a.out.h │ │ │ │ ├── environments.h │ │ │ │ ├── epoll.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── ipctypes.h │ │ │ │ ├── mman.h │ │ │ │ ├── msq.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── sysctl.h │ │ │ │ └── typesizes.h │ │ │ └── sys │ │ │ │ ├── debugreg.h │ │ │ │ ├── elf.h │ │ │ │ ├── io.h │ │ │ │ ├── perm.h │ │ │ │ ├── procfs.h │ │ │ │ ├── reg.h │ │ │ │ ├── ucontext.h │ │ │ │ ├── user.h │ │ │ │ └── vm86.h │ │ │ ├── x86_64 │ │ │ ├── 64 │ │ │ │ ├── Makefile │ │ │ │ └── nptl │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ └── libutil.abilist │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.S │ │ │ ├── __start_context.S │ │ │ ├── bits │ │ │ │ └── libc-vdso.h │ │ │ ├── brk.c │ │ │ ├── clock_gettime.c │ │ │ ├── clone.S │ │ │ ├── dl-cache.h │ │ │ ├── dl-procinfo.c │ │ │ ├── dl-procinfo.h │ │ │ ├── get_clockfreq.c │ │ │ ├── getcontext.S │ │ │ ├── gettimeofday.c │ │ │ ├── init-first.c │ │ │ ├── kernel_stat.h │ │ │ ├── ldconfig.h │ │ │ ├── ldd-rewrite.sed │ │ │ ├── makecontext.c │ │ │ ├── profil-counter.h │ │ │ ├── readelflib.c │ │ │ ├── recv.c │ │ │ ├── register-dump.h │ │ │ ├── sched_getcpu.S │ │ │ ├── sched_setaffinity.c │ │ │ ├── send.c │ │ │ ├── setcontext.S │ │ │ ├── sigaction.c │ │ │ ├── sigaltstack-offsets.sym │ │ │ ├── sigcontextinfo.h │ │ │ ├── sigpending.c │ │ │ ├── sigprocmask.c │ │ │ ├── swapcontext.S │ │ │ ├── syscall.S │ │ │ ├── syscalls.list │ │ │ ├── sysconf.c │ │ │ ├── sysdep.S │ │ │ ├── sysdep.h │ │ │ ├── time.c │ │ │ ├── timespec_get.c │ │ │ ├── ucontext_i.sym │ │ │ ├── umount.c │ │ │ ├── vfork.S │ │ │ └── x32 │ │ │ │ ├── Makefile │ │ │ │ ├── arch_prctl.c │ │ │ │ ├── configure │ │ │ │ ├── dl-cache.h │ │ │ │ ├── ftw.c │ │ │ │ ├── ftw64.c │ │ │ │ ├── getcpu.c │ │ │ │ ├── glob.c │ │ │ │ ├── init-first.c │ │ │ │ ├── llseek.S │ │ │ │ ├── lseek.S │ │ │ │ ├── nptl │ │ │ │ ├── c++-types.data │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ └── libutil.abilist │ │ │ │ ├── sched_getcpu-static.c │ │ │ │ ├── sched_getcpu.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysctl.mk │ │ │ │ └── sysdep.h │ │ │ ├── xmknod.c │ │ │ ├── xmknodat.c │ │ │ ├── xstat.c │ │ │ ├── xstat64.c │ │ │ ├── xstatconv.c │ │ │ └── xstatconv.h │ └── x86_64 │ │ ├── sysdep.S │ │ └── sysdep.h ├── wordsize-32 │ ├── Makefile │ ├── Versions │ ├── bits │ │ └── wordsize.h │ ├── divdi3.c │ ├── llabs.c │ ├── lldiv.c │ ├── strtoimax.c │ ├── strtoumax.c │ ├── symbol-hacks.h │ ├── wcstoimax.c │ └── wcstoumax.c ├── wordsize-64 │ ├── Makefile │ ├── Versions │ ├── bits │ │ └── wordsize.h │ ├── ftw.c │ ├── ftw64.c │ ├── glob.c │ ├── glob64.c │ ├── labs.c │ ├── ldiv.c │ ├── strtoimax.c │ ├── strtol.c │ ├── strtol_l.c │ ├── strtoll.c │ ├── strtoll_l.c │ ├── strtoul.c │ ├── strtoul_l.c │ ├── strtoull.c │ ├── strtoull_l.c │ ├── strtoumax.c │ ├── tst-writev.c │ ├── wcstoimax.c │ ├── wcstol.c │ ├── wcstol_l.c │ ├── wcstoll.c │ ├── wcstoll_l.c │ ├── wcstoul.c │ ├── wcstoul_l.c │ ├── wcstoull.c │ ├── wcstoull_l.c │ └── wcstoumax.c ├── x86 │ ├── Makefile │ ├── bits │ │ ├── byteswap-16.h │ │ ├── byteswap.h │ │ ├── endian.h │ │ ├── huge_vall.h │ │ ├── link.h │ │ ├── linkmap.h │ │ ├── mathdef.h │ │ ├── select.h │ │ ├── setjmp.h │ │ ├── string.h │ │ ├── wordsize.h │ │ └── xtitypes.h │ ├── fpu │ │ ├── Makefile │ │ ├── bits │ │ │ ├── fenv.h │ │ │ └── mathinline.h │ │ └── powl_helper.c │ ├── fpu_control.h │ ├── tininess.h │ └── tst-xmmymm.sh └── x86_64 │ ├── 64 │ ├── Implies-after │ └── shlib-versions │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── ____longjmp_chk.S │ ├── __longjmp.S │ ├── _mcount.S │ ├── abort-instr.h │ ├── add_n.S │ ├── addmul_1.S │ ├── backtrace.c │ ├── bits │ └── atomic.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── bzero.S │ ├── cacheinfo.c │ ├── configure │ ├── configure.in │ ├── crti.S │ ├── crtn.S │ ├── dl-irel.h │ ├── dl-lookupcfg.h │ ├── dl-machine.h │ ├── dl-runtime.c │ ├── dl-tls.h │ ├── dl-tlsdesc.S │ ├── dl-tlsdesc.h │ ├── dl-trampoline.S │ ├── dl-trampoline.h │ ├── ffs.c │ ├── ffsll.c │ ├── fpu │ ├── Implies │ ├── dla.h │ ├── e_acosl.c │ ├── e_atan2l.c │ ├── e_exp10l.S │ ├── e_exp2l.S │ ├── e_expf.S │ ├── e_expl.S │ ├── e_fmodl.S │ ├── e_ilogbl.S │ ├── e_log10l.S │ ├── e_log2l.S │ ├── e_logl.S │ ├── e_powl.S │ ├── e_remainderl.S │ ├── e_scalbl.S │ ├── e_sqrt.c │ ├── e_sqrtf.c │ ├── e_sqrtl.c │ ├── fclrexcpt.c │ ├── fedisblxcpt.c │ ├── feenablxcpt.c │ ├── fegetenv.c │ ├── fegetexcept.c │ ├── fegetround.c │ ├── feholdexcpt.c │ ├── fesetenv.c │ ├── fesetround.c │ ├── feupdateenv.c │ ├── fgetexcptflg.c │ ├── fraiseexcpt.c │ ├── fsetexcptflg.c │ ├── ftestexcept.c │ ├── k_rem_pio2l.c │ ├── libm-test-ulps │ ├── math_ldbl.h │ ├── math_private.h │ ├── multiarch │ │ ├── Makefile │ │ ├── doasin-fma4.c │ │ ├── dosincos-fma4.c │ │ ├── e_asin-fma4.c │ │ ├── e_asin.c │ │ ├── e_atan2-avx.c │ │ ├── e_atan2-fma4.c │ │ ├── e_atan2.c │ │ ├── e_exp-avx.c │ │ ├── e_exp-fma4.c │ │ ├── e_exp.c │ │ ├── e_log-avx.c │ │ ├── e_log-fma4.c │ │ ├── e_log.c │ │ ├── e_pow-fma4.c │ │ ├── e_pow.c │ │ ├── halfulp-fma4.c │ │ ├── mpa-avx.c │ │ ├── mpa-fma4.c │ │ ├── mpatan-fma4.c │ │ ├── mpatan2-fma4.c │ │ ├── mpexp-avx.c │ │ ├── mpexp-fma4.c │ │ ├── mplog-avx.c │ │ ├── mplog-fma4.c │ │ ├── mpsqrt-fma4.c │ │ ├── mptan-fma4.c │ │ ├── s_atan-avx.c │ │ ├── s_atan-fma4.c │ │ ├── s_atan.c │ │ ├── s_ceil-c.c │ │ ├── s_ceil.S │ │ ├── s_ceilf-c.c │ │ ├── s_ceilf.S │ │ ├── s_floor-c.c │ │ ├── s_floor.S │ │ ├── s_floorf-c.c │ │ ├── s_floorf.S │ │ ├── s_fma.c │ │ ├── s_fmaf.c │ │ ├── s_nearbyint-c.c │ │ ├── s_nearbyint.S │ │ ├── s_nearbyintf-c.c │ │ ├── s_nearbyintf.S │ │ ├── s_rint-c.c │ │ ├── s_rint.S │ │ ├── s_rintf-c.c │ │ ├── s_rintf.S │ │ ├── s_sin-avx.c │ │ ├── s_sin-fma4.c │ │ ├── s_sin.c │ │ ├── s_tan-avx.c │ │ ├── s_tan-fma4.c │ │ ├── s_tan.c │ │ ├── sincos32-fma4.c │ │ ├── slowexp-avx.c │ │ ├── slowexp-fma4.c │ │ └── slowpow-fma4.c │ ├── printf_fphex.c │ ├── s_atanl.c │ ├── s_ceill.S │ ├── s_copysign.S │ ├── s_copysignf.S │ ├── s_copysignl.S │ ├── s_cosf.S │ ├── s_expm1l.S │ ├── s_fabs.c │ ├── s_fabsf.c │ ├── s_fabsl.S │ ├── s_fdiml.S │ ├── s_finitel.S │ ├── s_floorl.S │ ├── s_fmax.S │ ├── s_fmaxf.S │ ├── s_fmaxl.S │ ├── s_fmin.S │ ├── s_fminf.S │ ├── s_fminl.S │ ├── s_fpclassifyl.c │ ├── s_isinfl.c │ ├── s_isnanl.c │ ├── s_llrint.S │ ├── s_llrintf.S │ ├── s_llrintl.S │ ├── s_log1pl.S │ ├── s_logbl.c │ ├── s_lrint.S │ ├── s_lrintf.S │ ├── s_lrintl.S │ ├── s_nearbyintl.S │ ├── s_nextafterl.c │ ├── s_nexttoward.c │ ├── s_nexttowardf.c │ ├── s_rintl.c │ ├── s_scalbnl.S │ ├── s_signbit.S │ ├── s_signbitf.S │ ├── s_significandl.c │ ├── s_sincosf.S │ ├── s_sinf.S │ └── s_truncl.S │ ├── hp-timing.c │ ├── hp-timing.h │ ├── htonl.S │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── l10nflist.c │ ├── ldbl2mpn.c │ ├── ldsodefs.h │ ├── link-defines.sym │ ├── locale-defines.sym │ ├── lshift.S │ ├── machine-gmon.h │ ├── memchr.S │ ├── memcmp.S │ ├── memcpy.S │ ├── memcpy_chk.S │ ├── memmove.c │ ├── mempcpy.S │ ├── mempcpy_chk.S │ ├── memrchr.S │ ├── memset.S │ ├── memset_chk.S │ ├── memusage.h │ ├── mp_clz_tab.c │ ├── mul_1.S │ ├── multiarch │ ├── Makefile │ ├── Versions │ ├── bcopy.S │ ├── cacheinfo.c │ ├── ifunc-defines.sym │ ├── ifunc-impl-list.c │ ├── init-arch.c │ ├── init-arch.h │ ├── memcmp-sse4.S │ ├── memcmp-ssse3.S │ ├── memcmp.S │ ├── memcpy-sse2-unaligned.S │ ├── memcpy-ssse3-back.S │ ├── memcpy-ssse3.S │ ├── memcpy.S │ ├── memcpy_chk.S │ ├── memmove-ssse3-back.S │ ├── memmove-ssse3.S │ ├── memmove.c │ ├── memmove_chk.c │ ├── mempcpy-ssse3-back.S │ ├── mempcpy-ssse3.S │ ├── mempcpy.S │ ├── mempcpy_chk.S │ ├── rawmemchr.S │ ├── rtld-memcmp.c │ ├── rtld-strlen.S │ ├── sched_cpucount.c │ ├── stpcpy-sse2-unaligned.S │ ├── stpcpy-ssse3.S │ ├── stpcpy.S │ ├── stpncpy-c.c │ ├── stpncpy-sse2-unaligned.S │ ├── stpncpy-ssse3.S │ ├── stpncpy.S │ ├── strcasecmp_l-ssse3.S │ ├── strcasecmp_l.S │ ├── strcasestr-c.c │ ├── strcasestr-nonascii.c │ ├── strcasestr.c │ ├── strcat-sse2-unaligned.S │ ├── strcat-ssse3.S │ ├── strcat.S │ ├── strchr-sse2-no-bsf.S │ ├── strchr.S │ ├── strcmp-sse42.S │ ├── strcmp-ssse3.S │ ├── strcmp.S │ ├── strcpy-sse2-unaligned.S │ ├── strcpy-ssse3.S │ ├── strcpy.S │ ├── strcspn-c.c │ ├── strcspn.S │ ├── strend-sse4.S │ ├── strncase_l-ssse3.S │ ├── strncase_l.S │ ├── strncat-c.c │ ├── strncat-sse2-unaligned.S │ ├── strncat-ssse3.S │ ├── strncat.S │ ├── strncmp-ssse3.S │ ├── strncmp.S │ ├── strncpy-c.c │ ├── strncpy-sse2-unaligned.S │ ├── strncpy-ssse3.S │ ├── strncpy.S │ ├── strpbrk-c.c │ ├── strpbrk.S │ ├── strrchr-sse2-no-bsf.S │ ├── strrchr.S │ ├── strspn-c.c │ ├── strspn.S │ ├── strstr-c.c │ ├── strstr.c │ ├── test-multiarch.c │ ├── varshift.c │ ├── varshift.h │ ├── wcscpy-c.c │ ├── wcscpy-ssse3.S │ ├── wcscpy.S │ ├── wmemcmp-c.c │ ├── wmemcmp-sse4.S │ ├── wmemcmp-ssse3.S │ └── wmemcmp.S │ ├── preconfigure │ ├── preconfigure.in │ ├── rawmemchr.S │ ├── rshift.S │ ├── rtld-memcmp.c │ ├── rtld-memset.S │ ├── rtld-strchr.S │ ├── rtld-strlen.S │ ├── sched_cpucount.c │ ├── setjmp.S │ ├── stackguard-macros.h │ ├── stackinfo.h │ ├── start.S │ ├── stpcpy.S │ ├── stpcpy_chk.S │ ├── strcasecmp.S │ ├── strcasecmp_l-nonascii.c │ ├── strcasecmp_l.S │ ├── strcat.S │ ├── strchr.S │ ├── strchrnul.S │ ├── strcmp.S │ ├── strcpy.S │ ├── strcpy_chk.S │ ├── strcspn.S │ ├── strlen.S │ ├── strncase.S │ ├── strncase_l-nonascii.c │ ├── strncase_l.S │ ├── strncmp.S │ ├── strnlen.S │ ├── strpbrk.S │ ├── strrchr.S │ ├── strspn.S │ ├── strtok.S │ ├── strtok_r.S │ ├── sub_n.S │ ├── submul_1.S │ ├── sysdep.h │ ├── tls-macros.h │ ├── tlsdesc.c │ ├── tlsdesc.sym │ ├── tst-audit.h │ ├── tst-audit3.c │ ├── tst-audit4.c │ ├── tst-audit5.c │ ├── tst-audit6.c │ ├── tst-audit7.c │ ├── tst-auditmod3a.c │ ├── tst-auditmod3b.c │ ├── tst-auditmod4a.c │ ├── tst-auditmod4b.c │ ├── tst-auditmod5a.c │ ├── tst-auditmod5b.c │ ├── tst-auditmod6a.c │ ├── tst-auditmod6b.c │ ├── tst-auditmod6c.c │ ├── tst-auditmod7a.c │ ├── tst-auditmod7b.c │ ├── tst-mallocalign1.c │ ├── tst-quad1.c │ ├── tst-quad1pie.c │ ├── tst-quad2.c │ ├── tst-quad2pie.c │ ├── tst-quadmod1.S │ ├── tst-quadmod1pie.S │ ├── tst-quadmod2.S │ ├── tst-quadmod2pie.S │ ├── tst-stack-align.h │ ├── wcschr.S │ ├── wcscmp.S │ ├── wcslen.S │ ├── wcsrchr.S │ └── x32 │ ├── Implies-after │ ├── _itoa.h │ ├── divdi3.c │ ├── dl-machine.h │ ├── ffs.c │ ├── gmp-mparam.h │ ├── shlib-versions │ ├── symbol-hacks.h │ └── sysdep.h ├── sysvipc ├── Makefile ├── Versions ├── ftok.c ├── msgctl.c ├── msgget.c ├── msgrcv.c ├── msgsnd.c ├── semctl.c ├── semget.c ├── semop.c ├── semtimedop.c ├── shmat.c ├── shmctl.c ├── shmdt.c ├── shmget.c └── sys │ ├── ipc.h │ ├── msg.h │ ├── sem.h │ └── shm.h ├── termios ├── Makefile ├── Versions ├── cfmakeraw.c ├── cfsetspeed.c ├── speed.c ├── sys │ ├── termios.h │ └── ttychars.h ├── tcdrain.c ├── tcflow.c ├── tcflush.c ├── tcgetattr.c ├── tcgetpgrp.c ├── tcgetsid.c ├── tcsendbrk.c ├── tcsetattr.c ├── tcsetpgrp.c └── termios.h ├── test-skeleton.c ├── time ├── Depend ├── Makefile ├── Versions ├── adjtime.c ├── alt_digit.c ├── asctime.c ├── bug-asctime.c ├── bug-asctime_r.c ├── bug-getdate1.c ├── bug-mktime1.c ├── clock.c ├── clocktest.c ├── ctime.c ├── ctime_r.c ├── datemsk ├── difftime.c ├── dysize.c ├── era.c ├── ftime.c ├── getdate.c ├── getitimer.c ├── gettimeofday.c ├── gmtime.c ├── lc-time-cleanup.c ├── localtime.c ├── mktime.c ├── offtime.c ├── setitimer.c ├── settimeofday.c ├── stime.c ├── strftime.c ├── strftime_l.c ├── strptime.c ├── strptime_l.c ├── sys │ ├── time.h │ └── timeb.h ├── test_time.c ├── time.c ├── time.h ├── timegm.c ├── timespec_get.c ├── tst-ftime_l.c ├── tst-getdate.c ├── tst-mktime.c ├── tst-mktime2.c ├── tst-mktime3.c ├── tst-posixtz.c ├── tst-strftime.c ├── tst-strptime-whitespace.c ├── tst-strptime.c ├── tst-strptime2.c ├── tst-strptime3.c ├── tst_wcsftime.c ├── tzfile.c ├── tzset.c ├── wcsftime.c └── wcsftime_l.c ├── timezone ├── Makefile ├── README ├── africa ├── antarctica ├── asia ├── australasia ├── backward ├── checktab.awk ├── etcetera ├── europe ├── factory ├── ialloc.c ├── iso3166.tab ├── leapseconds ├── northamerica ├── pacificnew ├── private.h ├── scheck.c ├── simplebackw ├── solar87 ├── solar88 ├── solar89 ├── southamerica ├── systemv ├── test-tz.c ├── tst-timezone.c ├── tzfile.h ├── tzselect.ksh ├── yearistype ├── zdump.c ├── zic.c └── zone.tab ├── version.h ├── wcsmbs ├── Depend ├── Makefile ├── Versions ├── bits │ ├── wchar-ldbl.h │ └── wchar2.h ├── btowc.c ├── c16rtomb.c ├── isoc99_fwscanf.c ├── isoc99_swscanf.c ├── isoc99_vfwscanf.c ├── isoc99_vswscanf.c ├── isoc99_vwscanf.c ├── isoc99_wscanf.c ├── mbrlen.c ├── mbrtoc16.c ├── mbrtowc.c ├── mbsinit.c ├── mbsnrtowcs.c ├── mbsrtowcs.c ├── mbsrtowcs_l.c ├── test-wcschr-ifunc.c ├── test-wcschr.c ├── test-wcscmp-ifunc.c ├── test-wcscmp.c ├── test-wcscpy-ifunc.c ├── test-wcscpy.c ├── test-wcslen-ifunc.c ├── test-wcslen.c ├── test-wcsrchr-ifunc.c ├── test-wcsrchr.c ├── test-wmemcmp-ifunc.c ├── test-wmemcmp.c ├── tst-btowc.c ├── tst-c16c32-1.c ├── tst-mbrtowc.c ├── tst-mbrtowc2.c ├── tst-mbsrtowcs.c ├── tst-wchar-h.c ├── tst-wcpncpy.c ├── tst-wcrtomb.c ├── tst-wcsnlen.c ├── tst-wcstof.c ├── uchar.h ├── wchar.h ├── wcpcpy.c ├── wcpncpy.c ├── wcrtomb.c ├── wcsatcliff.c ├── wcscasecmp.c ├── wcscasecmp_l.c ├── wcscat.c ├── wcschr.c ├── wcschrnul.c ├── wcscmp.c ├── wcscoll.c ├── wcscoll_l.c ├── wcscpy.c ├── wcscspn.c ├── wcsdup.c ├── wcslen.c ├── wcsmbs-tst1.c ├── wcsmbsload.c ├── wcsmbsload.h ├── wcsncase.c ├── wcsncase_l.c ├── wcsncat.c ├── wcsncmp.c ├── wcsncpy.c ├── wcsnlen.c ├── wcsnrtombs.c ├── wcspbrk.c ├── wcsrchr.c ├── wcsrtombs.c ├── wcsspn.c ├── wcsstr.c ├── wcstod.c ├── wcstod_l.c ├── wcstof.c ├── wcstof_l.c ├── wcstok.c ├── wcstol.c ├── wcstol_l.c ├── wcstold.c ├── wcstold_l.c ├── wcstoll.c ├── wcstoll_l.c ├── wcstoul.c ├── wcstoul_l.c ├── wcstoull.c ├── wcstoull_l.c ├── wcswidth.c ├── wcsxfrm.c ├── wcsxfrm_l.c ├── wctob.c ├── wcwidth.c ├── wcwidth.h ├── wmemchr.c ├── wmemcmp.c ├── wmemcpy.c ├── wmemmove.c ├── wmempcpy.c └── wmemset.c └── wctype ├── Makefile ├── Versions ├── bug-wctypeh.c ├── iswctype.c ├── iswctype_l.c ├── test_wcfuncs.c ├── test_wctype.c ├── towctrans.c ├── towctrans_l.c ├── wcfuncs.c ├── wcfuncs_l.c ├── wchar-lookup.h ├── wctrans.c ├── wctrans_l.c ├── wctype.c ├── wctype.h └── wctype_l.c /.gitattributes: -------------------------------------------------------------------------------- 1 | timezone/* -whitespace 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/.gitignore -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/BUGS -------------------------------------------------------------------------------- /CONFORMANCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/CONFORMANCE -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.1 -------------------------------------------------------------------------------- /ChangeLog.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.10 -------------------------------------------------------------------------------- /ChangeLog.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.11 -------------------------------------------------------------------------------- /ChangeLog.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.12 -------------------------------------------------------------------------------- /ChangeLog.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.13 -------------------------------------------------------------------------------- /ChangeLog.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.14 -------------------------------------------------------------------------------- /ChangeLog.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.15 -------------------------------------------------------------------------------- /ChangeLog.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.16 -------------------------------------------------------------------------------- /ChangeLog.17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.17 -------------------------------------------------------------------------------- /ChangeLog.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.2 -------------------------------------------------------------------------------- /ChangeLog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.3 -------------------------------------------------------------------------------- /ChangeLog.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.4 -------------------------------------------------------------------------------- /ChangeLog.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.5 -------------------------------------------------------------------------------- /ChangeLog.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.6 -------------------------------------------------------------------------------- /ChangeLog.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.7 -------------------------------------------------------------------------------- /ChangeLog.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.8 -------------------------------------------------------------------------------- /ChangeLog.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ChangeLog.9 -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/LICENSES -------------------------------------------------------------------------------- /Makeconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/Makeconfig -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/Makefile.in -------------------------------------------------------------------------------- /Makerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/Makerules -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/NEWS -------------------------------------------------------------------------------- /PROJECTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/PROJECTS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/README -------------------------------------------------------------------------------- /Rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/Rules -------------------------------------------------------------------------------- /Versions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/Versions.def -------------------------------------------------------------------------------- /WUR-REPORT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/WUR-REPORT -------------------------------------------------------------------------------- /abi-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/abi-tags -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /argp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/argp/Makefile -------------------------------------------------------------------------------- /argp/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/argp/Versions -------------------------------------------------------------------------------- /argp/argp-ba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/argp/argp-ba.c -------------------------------------------------------------------------------- /argp/argp-pv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/argp/argp-pv.c -------------------------------------------------------------------------------- /argp/argp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/argp/argp.h -------------------------------------------------------------------------------- /assert/Depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/assert/Depend -------------------------------------------------------------------------------- /benchtests/log-inputs: -------------------------------------------------------------------------------- 1 | 42.0 2 | -------------------------------------------------------------------------------- /bits/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/atomic.h -------------------------------------------------------------------------------- /bits/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/dirent.h -------------------------------------------------------------------------------- /bits/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/dlfcn.h -------------------------------------------------------------------------------- /bits/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/endian.h -------------------------------------------------------------------------------- /bits/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/errno.h -------------------------------------------------------------------------------- /bits/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/fcntl.h -------------------------------------------------------------------------------- /bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/fenv.h -------------------------------------------------------------------------------- /bits/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/in.h -------------------------------------------------------------------------------- /bits/inf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/inf.h -------------------------------------------------------------------------------- /bits/ioctls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/ioctls.h -------------------------------------------------------------------------------- /bits/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/ipc.h -------------------------------------------------------------------------------- /bits/link.h: -------------------------------------------------------------------------------- 1 | #error "Architecture-specific definition needed." 2 | -------------------------------------------------------------------------------- /bits/linkmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/linkmap.h -------------------------------------------------------------------------------- /bits/mathdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/mathdef.h -------------------------------------------------------------------------------- /bits/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/mman.h -------------------------------------------------------------------------------- /bits/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/mqueue.h -------------------------------------------------------------------------------- /bits/msq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/msq.h -------------------------------------------------------------------------------- /bits/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/nan.h -------------------------------------------------------------------------------- /bits/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/netdb.h -------------------------------------------------------------------------------- /bits/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/param.h -------------------------------------------------------------------------------- /bits/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/poll.h -------------------------------------------------------------------------------- /bits/predefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/predefs.h -------------------------------------------------------------------------------- /bits/pthreadtypes.h: -------------------------------------------------------------------------------- 1 | /* No thread support. */ 2 | -------------------------------------------------------------------------------- /bits/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/sched.h -------------------------------------------------------------------------------- /bits/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/select.h -------------------------------------------------------------------------------- /bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/sem.h -------------------------------------------------------------------------------- /bits/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/setjmp.h -------------------------------------------------------------------------------- /bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/shm.h -------------------------------------------------------------------------------- /bits/siginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/siginfo.h -------------------------------------------------------------------------------- /bits/signum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/signum.h -------------------------------------------------------------------------------- /bits/sigset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/sigset.h -------------------------------------------------------------------------------- /bits/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/socket.h -------------------------------------------------------------------------------- /bits/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/stat.h -------------------------------------------------------------------------------- /bits/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/statfs.h -------------------------------------------------------------------------------- /bits/statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/statvfs.h -------------------------------------------------------------------------------- /bits/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/string.h -------------------------------------------------------------------------------- /bits/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/stropts.h -------------------------------------------------------------------------------- /bits/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/termios.h -------------------------------------------------------------------------------- /bits/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/time.h -------------------------------------------------------------------------------- /bits/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/types.h -------------------------------------------------------------------------------- /bits/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/uio.h -------------------------------------------------------------------------------- /bits/ustat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/ustat.h -------------------------------------------------------------------------------- /bits/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/utmp.h -------------------------------------------------------------------------------- /bits/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/utsname.h -------------------------------------------------------------------------------- /bits/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/bits/wchar.h -------------------------------------------------------------------------------- /catgets/Depend: -------------------------------------------------------------------------------- 1 | intl 2 | -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/config.h.in -------------------------------------------------------------------------------- /config.make.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/config.make.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/configure.in -------------------------------------------------------------------------------- /crypt/Banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/Banner -------------------------------------------------------------------------------- /crypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/Makefile -------------------------------------------------------------------------------- /crypt/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/Versions -------------------------------------------------------------------------------- /crypt/cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/cert.c -------------------------------------------------------------------------------- /crypt/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/crypt.c -------------------------------------------------------------------------------- /crypt/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/crypt.h -------------------------------------------------------------------------------- /crypt/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/md5.c -------------------------------------------------------------------------------- /crypt/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/md5.h -------------------------------------------------------------------------------- /crypt/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/sha256.c -------------------------------------------------------------------------------- /crypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/sha256.h -------------------------------------------------------------------------------- /crypt/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/sha512.c -------------------------------------------------------------------------------- /crypt/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/sha512.h -------------------------------------------------------------------------------- /crypt/speeds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/speeds.c -------------------------------------------------------------------------------- /crypt/ufc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/crypt/ufc.c -------------------------------------------------------------------------------- /csu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/csu/Makefile -------------------------------------------------------------------------------- /csu/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/csu/Versions -------------------------------------------------------------------------------- /csu/abi-note.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/csu/abi-note.S -------------------------------------------------------------------------------- /csu/elf-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/csu/elf-init.c -------------------------------------------------------------------------------- /csu/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/csu/errno.c -------------------------------------------------------------------------------- /csu/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/csu/init.c -------------------------------------------------------------------------------- /csu/libc-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/csu/libc-tls.c -------------------------------------------------------------------------------- /csu/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/csu/start.c -------------------------------------------------------------------------------- /csu/sysdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/csu/sysdep.c -------------------------------------------------------------------------------- /csu/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/csu/version.c -------------------------------------------------------------------------------- /ctype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ctype/Makefile -------------------------------------------------------------------------------- /ctype/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ctype/Versions -------------------------------------------------------------------------------- /ctype/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ctype/ctype.c -------------------------------------------------------------------------------- /ctype/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ctype/ctype.h -------------------------------------------------------------------------------- /debug/Depend: -------------------------------------------------------------------------------- 1 | localedata 2 | -------------------------------------------------------------------------------- /debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/debug/Makefile -------------------------------------------------------------------------------- /debug/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/debug/Versions -------------------------------------------------------------------------------- /debug/tst-chk2.c: -------------------------------------------------------------------------------- 1 | #define _FORTIFY_SOURCE 1 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /debug/tst-chk3.c: -------------------------------------------------------------------------------- 1 | #define _FORTIFY_SOURCE 2 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /debug/tst-chk4.cc: -------------------------------------------------------------------------------- 1 | #include "tst-chk1.c" 2 | -------------------------------------------------------------------------------- /debug/tst-chk5.cc: -------------------------------------------------------------------------------- 1 | #define _FORTIFY_SOURCE 1 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /debug/tst-chk6.cc: -------------------------------------------------------------------------------- 1 | #define _FORTIFY_SOURCE 2 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /debug/tst-lfschk1.c: -------------------------------------------------------------------------------- 1 | #define _FILE_OFFSET_BITS 64 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /debug/tst-lfschk2.c: -------------------------------------------------------------------------------- 1 | #define _FILE_OFFSET_BITS 64 2 | #include "tst-chk2.c" 3 | -------------------------------------------------------------------------------- /debug/tst-lfschk3.c: -------------------------------------------------------------------------------- 1 | #define _FILE_OFFSET_BITS 64 2 | #include "tst-chk3.c" 3 | -------------------------------------------------------------------------------- /dirent/dirfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dirent/dirfd.c -------------------------------------------------------------------------------- /dirent/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dirent/list.c -------------------------------------------------------------------------------- /dlfcn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dlfcn/Makefile -------------------------------------------------------------------------------- /dlfcn/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dlfcn/Versions -------------------------------------------------------------------------------- /dlfcn/dladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dlfcn/dladdr.c -------------------------------------------------------------------------------- /dlfcn/dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dlfcn/dlfcn.c -------------------------------------------------------------------------------- /dlfcn/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dlfcn/dlfcn.h -------------------------------------------------------------------------------- /dlfcn/dlinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dlfcn/dlinfo.c -------------------------------------------------------------------------------- /dlfcn/dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dlfcn/dlopen.c -------------------------------------------------------------------------------- /dlfcn/dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dlfcn/dlsym.c -------------------------------------------------------------------------------- /dlfcn/dlvsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dlfcn/dlvsym.c -------------------------------------------------------------------------------- /dlfcn/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/dlfcn/eval.c -------------------------------------------------------------------------------- /dlfcn/glreflib3.c: -------------------------------------------------------------------------------- 1 | #include "glreflib1.c" 2 | -------------------------------------------------------------------------------- /dlfcn/sdladdr.c: -------------------------------------------------------------------------------- 1 | #include "dladdr.c" 2 | -------------------------------------------------------------------------------- /dlfcn/sdladdr1.c: -------------------------------------------------------------------------------- 1 | #include "dladdr1.c" 2 | -------------------------------------------------------------------------------- /dlfcn/sdlclose.c: -------------------------------------------------------------------------------- 1 | #include "dlclose.c" 2 | -------------------------------------------------------------------------------- /dlfcn/sdlerror.c: -------------------------------------------------------------------------------- 1 | #include "dlerror.c" 2 | -------------------------------------------------------------------------------- /dlfcn/sdlinfo.c: -------------------------------------------------------------------------------- 1 | #include "dlinfo.c" 2 | -------------------------------------------------------------------------------- /dlfcn/sdlmopen.c: -------------------------------------------------------------------------------- 1 | #include "dlmopen.c" 2 | -------------------------------------------------------------------------------- /dlfcn/sdlopen.c: -------------------------------------------------------------------------------- 1 | #include "dlopen.c" 2 | -------------------------------------------------------------------------------- /dlfcn/sdlsym.c: -------------------------------------------------------------------------------- 1 | #include "dlsym.c" 2 | -------------------------------------------------------------------------------- /dlfcn/sdlvsym.c: -------------------------------------------------------------------------------- 1 | #include "dlvsym.c" 2 | -------------------------------------------------------------------------------- /elf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/Makefile -------------------------------------------------------------------------------- /elf/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/Versions -------------------------------------------------------------------------------- /elf/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/cache.c -------------------------------------------------------------------------------- /elf/circlemod1a.c: -------------------------------------------------------------------------------- 1 | #include "circlemod1.c" 2 | -------------------------------------------------------------------------------- /elf/circlemod3a.c: -------------------------------------------------------------------------------- 1 | #include "circlemod3.c" 2 | -------------------------------------------------------------------------------- /elf/dblload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dblload.c -------------------------------------------------------------------------------- /elf/dep1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dep1.c -------------------------------------------------------------------------------- /elf/dep2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dep2.c -------------------------------------------------------------------------------- /elf/dep3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dep3.c -------------------------------------------------------------------------------- /elf/dep4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dep4.c -------------------------------------------------------------------------------- /elf/dl-addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-addr.c -------------------------------------------------------------------------------- /elf/dl-brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-brk.c -------------------------------------------------------------------------------- /elf/dl-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-cache.c -------------------------------------------------------------------------------- /elf/dl-close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-close.c -------------------------------------------------------------------------------- /elf/dl-debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-debug.c -------------------------------------------------------------------------------- /elf/dl-deps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-deps.c -------------------------------------------------------------------------------- /elf/dl-dst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-dst.h -------------------------------------------------------------------------------- /elf/dl-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-error.c -------------------------------------------------------------------------------- /elf/dl-fini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-fini.c -------------------------------------------------------------------------------- /elf/dl-fptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-fptr.c -------------------------------------------------------------------------------- /elf/dl-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-init.c -------------------------------------------------------------------------------- /elf/dl-libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-libc.c -------------------------------------------------------------------------------- /elf/dl-load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-load.c -------------------------------------------------------------------------------- /elf/dl-misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-misc.c -------------------------------------------------------------------------------- /elf/dl-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-open.c -------------------------------------------------------------------------------- /elf/dl-reloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-reloc.c -------------------------------------------------------------------------------- /elf/dl-sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-sbrk.c -------------------------------------------------------------------------------- /elf/dl-scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-scope.c -------------------------------------------------------------------------------- /elf/dl-sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-sym.c -------------------------------------------------------------------------------- /elf/dl-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-tls.c -------------------------------------------------------------------------------- /elf/dl-tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/dl-tsd.c -------------------------------------------------------------------------------- /elf/do-rel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/do-rel.h -------------------------------------------------------------------------------- /elf/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/elf.h -------------------------------------------------------------------------------- /elf/failobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/failobj.c -------------------------------------------------------------------------------- /elf/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/filter.c -------------------------------------------------------------------------------- /elf/filtmod1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/filtmod1.c -------------------------------------------------------------------------------- /elf/filtmod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/filtmod2.c -------------------------------------------------------------------------------- /elf/firstobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/firstobj.c -------------------------------------------------------------------------------- /elf/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/global.c -------------------------------------------------------------------------------- /elf/interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/interp.c -------------------------------------------------------------------------------- /elf/ldconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/ldconfig.c -------------------------------------------------------------------------------- /elf/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/link.h -------------------------------------------------------------------------------- /elf/loadfail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/loadfail.c -------------------------------------------------------------------------------- /elf/loadtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/loadtest.c -------------------------------------------------------------------------------- /elf/next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/next.c -------------------------------------------------------------------------------- /elf/nextmod1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/nextmod1.c -------------------------------------------------------------------------------- /elf/nextmod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/nextmod2.c -------------------------------------------------------------------------------- /elf/nodel2mod3.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /elf/nodelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/nodelete.c -------------------------------------------------------------------------------- /elf/nodlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/nodlopen.c -------------------------------------------------------------------------------- /elf/nodlopenmod.c: -------------------------------------------------------------------------------- 1 | int a = 42; 2 | -------------------------------------------------------------------------------- /elf/noload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/noload.c -------------------------------------------------------------------------------- /elf/order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/order.c -------------------------------------------------------------------------------- /elf/order2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/order2.c -------------------------------------------------------------------------------- /elf/origtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/origtest.c -------------------------------------------------------------------------------- /elf/pldd-xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/pldd-xx.c -------------------------------------------------------------------------------- /elf/pldd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/pldd.c -------------------------------------------------------------------------------- /elf/readlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/readlib.c -------------------------------------------------------------------------------- /elf/reldep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/reldep.c -------------------------------------------------------------------------------- /elf/reldep2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/reldep2.c -------------------------------------------------------------------------------- /elf/reldep3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/reldep3.c -------------------------------------------------------------------------------- /elf/reldep4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/reldep4.c -------------------------------------------------------------------------------- /elf/reldep5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/reldep5.c -------------------------------------------------------------------------------- /elf/reldep6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/reldep6.c -------------------------------------------------------------------------------- /elf/reldep7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/reldep7.c -------------------------------------------------------------------------------- /elf/reldep8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/reldep8.c -------------------------------------------------------------------------------- /elf/reldep8mod3.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /elf/reldep9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/reldep9.c -------------------------------------------------------------------------------- /elf/reldep9mod2.c: -------------------------------------------------------------------------------- 1 | void baz (void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /elf/reldep9mod3.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /elf/restest1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/restest1.c -------------------------------------------------------------------------------- /elf/restest2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/restest2.c -------------------------------------------------------------------------------- /elf/rtld-Rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/rtld-Rules -------------------------------------------------------------------------------- /elf/rtld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/rtld.c -------------------------------------------------------------------------------- /elf/sln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/sln.c -------------------------------------------------------------------------------- /elf/sofini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/sofini.c -------------------------------------------------------------------------------- /elf/soinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/soinit.c -------------------------------------------------------------------------------- /elf/sprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/sprof.c -------------------------------------------------------------------------------- /elf/testobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/testobj.h -------------------------------------------------------------------------------- /elf/testobj1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/testobj1.c -------------------------------------------------------------------------------- /elf/testobj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/testobj2.c -------------------------------------------------------------------------------- /elf/testobj3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/testobj3.c -------------------------------------------------------------------------------- /elf/testobj4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/testobj4.c -------------------------------------------------------------------------------- /elf/testobj5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/testobj5.c -------------------------------------------------------------------------------- /elf/testobj6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/testobj6.c -------------------------------------------------------------------------------- /elf/tst-array1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-array1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-array2.c: -------------------------------------------------------------------------------- 1 | #include "tst-array1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-array3.c: -------------------------------------------------------------------------------- 1 | #include "tst-array1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-array5-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-array5.c" 2 | -------------------------------------------------------------------------------- /elf/tst-audit1.c: -------------------------------------------------------------------------------- 1 | #include "../io/pwd.c" 2 | -------------------------------------------------------------------------------- /elf/tst-audit8.c: -------------------------------------------------------------------------------- 1 | #include "../io/pwd.c" 2 | -------------------------------------------------------------------------------- /elf/tst-leaks1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-leaks1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-pie1.c: -------------------------------------------------------------------------------- 1 | int 2 | foo (void) 3 | { 4 | return 34; 5 | } 6 | -------------------------------------------------------------------------------- /elf/tst-stackguard1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-stackguard1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tls1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tls1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/tst-tls1.c -------------------------------------------------------------------------------- /elf/tst-tls2-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls2.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tls2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/tst-tls2.c -------------------------------------------------------------------------------- /elf/tst-tls3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/tst-tls3.c -------------------------------------------------------------------------------- /elf/tst-tls4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/tst-tls4.c -------------------------------------------------------------------------------- /elf/tst-tls5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/tst-tls5.c -------------------------------------------------------------------------------- /elf/tst-tls6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/tst-tls6.c -------------------------------------------------------------------------------- /elf/tst-tls7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/tst-tls7.c -------------------------------------------------------------------------------- /elf/tst-tls8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/tst-tls8.c -------------------------------------------------------------------------------- /elf/tst-tls9-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls9.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tls9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/tst-tls9.c -------------------------------------------------------------------------------- /elf/tst-tlsmod10.c: -------------------------------------------------------------------------------- 1 | #include "tst-tlsmod8.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tlsmod14b.c: -------------------------------------------------------------------------------- 1 | #define FCT in_dso2 2 | #include "tst-tlsmod14a.c" 3 | -------------------------------------------------------------------------------- /elf/tst-tlsmod16a.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int __thread tlsvar; 4 | -------------------------------------------------------------------------------- /elf/unload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/unload.c -------------------------------------------------------------------------------- /elf/unload2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/unload2.c -------------------------------------------------------------------------------- /elf/unload3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/unload3.c -------------------------------------------------------------------------------- /elf/unload3mod1.c: -------------------------------------------------------------------------------- 1 | int dummy1; 2 | -------------------------------------------------------------------------------- /elf/unload3mod2.c: -------------------------------------------------------------------------------- 1 | int dummy2; 2 | -------------------------------------------------------------------------------- /elf/unload4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/unload4.c -------------------------------------------------------------------------------- /elf/unload5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/unload5.c -------------------------------------------------------------------------------- /elf/unload6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/unload6.c -------------------------------------------------------------------------------- /elf/unload7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/unload7.c -------------------------------------------------------------------------------- /elf/unload7mod2.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /elf/unload8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/unload8.c -------------------------------------------------------------------------------- /elf/unload8mod1x.c: -------------------------------------------------------------------------------- 1 | int mod1x; 2 | -------------------------------------------------------------------------------- /elf/vismain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/vismain.c -------------------------------------------------------------------------------- /elf/vismod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/vismod.h -------------------------------------------------------------------------------- /elf/vismod1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/vismod1.c -------------------------------------------------------------------------------- /elf/vismod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/vismod2.c -------------------------------------------------------------------------------- /elf/vismod3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/elf/vismod3.c -------------------------------------------------------------------------------- /extra-lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/extra-lib.mk -------------------------------------------------------------------------------- /gmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/gmon/Makefile -------------------------------------------------------------------------------- /gmon/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/gmon/Versions -------------------------------------------------------------------------------- /gmon/gmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/gmon/gmon.c -------------------------------------------------------------------------------- /gmon/mcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/gmon/mcount.c -------------------------------------------------------------------------------- /gmon/profil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/gmon/profil.c -------------------------------------------------------------------------------- /gmon/sprofil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/gmon/sprofil.c -------------------------------------------------------------------------------- /grp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/grp/Makefile -------------------------------------------------------------------------------- /grp/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/grp/Versions -------------------------------------------------------------------------------- /grp/getgrent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/grp/getgrent.c -------------------------------------------------------------------------------- /grp/getgrgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/grp/getgrgid.c -------------------------------------------------------------------------------- /grp/getgrnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/grp/getgrnam.c -------------------------------------------------------------------------------- /grp/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/grp/grp.h -------------------------------------------------------------------------------- /grp/putgrent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/grp/putgrent.c -------------------------------------------------------------------------------- /grp/testgrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/grp/testgrp.c -------------------------------------------------------------------------------- /hesiod/Depend: -------------------------------------------------------------------------------- 1 | nss 2 | resolv 3 | -------------------------------------------------------------------------------- /hurd/Depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/Depend -------------------------------------------------------------------------------- /hurd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/Makefile -------------------------------------------------------------------------------- /hurd/Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/Notes -------------------------------------------------------------------------------- /hurd/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/Versions -------------------------------------------------------------------------------- /hurd/dtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/dtable.c -------------------------------------------------------------------------------- /hurd/fchroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/fchroot.c -------------------------------------------------------------------------------- /hurd/fd-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/fd-read.c -------------------------------------------------------------------------------- /hurd/hurd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/hurd.h -------------------------------------------------------------------------------- /hurd/hurd/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/hurd/fd.h -------------------------------------------------------------------------------- /hurd/hurd/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/hurd/id.h -------------------------------------------------------------------------------- /hurd/hurdid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/hurdid.c -------------------------------------------------------------------------------- /hurd/hurdmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/hurdmsg.c -------------------------------------------------------------------------------- /hurd/hurdpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/hurdpid.c -------------------------------------------------------------------------------- /hurd/hurdsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/hurdsig.c -------------------------------------------------------------------------------- /hurd/new-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/new-fd.c -------------------------------------------------------------------------------- /hurd/port2fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/port2fd.c -------------------------------------------------------------------------------- /hurd/setauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/setauth.c -------------------------------------------------------------------------------- /hurd/siginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/siginfo.c -------------------------------------------------------------------------------- /hurd/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/hurd/xattr.c -------------------------------------------------------------------------------- /iconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/iconv/Makefile -------------------------------------------------------------------------------- /iconv/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/iconv/Versions -------------------------------------------------------------------------------- /iconv/gconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/iconv/gconv.c -------------------------------------------------------------------------------- /iconv/gconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/iconv/gconv.h -------------------------------------------------------------------------------- /iconv/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/iconv/iconv.c -------------------------------------------------------------------------------- /iconv/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/iconv/iconv.h -------------------------------------------------------------------------------- /iconv/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/iconv/loop.c -------------------------------------------------------------------------------- /iconv/strtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/iconv/strtab.c -------------------------------------------------------------------------------- /iconvdata/Depend: -------------------------------------------------------------------------------- 1 | iconv 2 | localedata 3 | -------------------------------------------------------------------------------- /iconvdata/EUC-JP.irreversible: -------------------------------------------------------------------------------- 1 | 0x5C 0x00A5 2 | 0x7E 0x203E 3 | -------------------------------------------------------------------------------- /iconvdata/EUC-KR.irreversible: -------------------------------------------------------------------------------- 1 | 0xA3DC 0x20A9 2 | -------------------------------------------------------------------------------- /iconvdata/EUC-TW.irreversible: -------------------------------------------------------------------------------- 1 | 0x8EA3A1B8 0x5344 2 | -------------------------------------------------------------------------------- /iconvdata/IBM1132.irreversible: -------------------------------------------------------------------------------- 1 | 0x70 0x006B 2 | -------------------------------------------------------------------------------- /iconvdata/IBM1133.irreversible: -------------------------------------------------------------------------------- 1 | 0xDF 0x006B 2 | -------------------------------------------------------------------------------- /iconvdata/IBM1163.irreversible: -------------------------------------------------------------------------------- 1 | 0xAF 0x203E 2 | 0xD0 0x00D0 3 | -------------------------------------------------------------------------------- /iconvdata/TSCII.irreversible: -------------------------------------------------------------------------------- 1 | 0xAD 0x0B87 2 | -------------------------------------------------------------------------------- /include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/aio.h -------------------------------------------------------------------------------- /include/argp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/argp.h -------------------------------------------------------------------------------- /include/argz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/argz.h -------------------------------------------------------------------------------- /include/arpa/ftp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/arpa/telnet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/arpa/tftp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/error.h: -------------------------------------------------------------------------------- 1 | #include "../../misc/bits/error.h" 2 | -------------------------------------------------------------------------------- /include/bits/fcntl2.h: -------------------------------------------------------------------------------- 1 | #include "../../io/bits/fcntl2.h" 2 | -------------------------------------------------------------------------------- /include/bits/poll2.h: -------------------------------------------------------------------------------- 1 | #include "../../io/bits/poll2.h" 2 | -------------------------------------------------------------------------------- /include/bits/select2.h: -------------------------------------------------------------------------------- 1 | #include "../../misc/bits/select2.h" 2 | -------------------------------------------------------------------------------- /include/bits/stab.def: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/unistd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/wchar2.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/byteswap.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/des.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/envz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/envz.h -------------------------------------------------------------------------------- /include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/err.h -------------------------------------------------------------------------------- /include/error.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/fenv.h -------------------------------------------------------------------------------- /include/ftw.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/getopt_int.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/glob.h -------------------------------------------------------------------------------- /include/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/gmp.h -------------------------------------------------------------------------------- /include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/grp.h -------------------------------------------------------------------------------- /include/libgen.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/link.h -------------------------------------------------------------------------------- /include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/math.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/netgroup.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/nl_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/nss.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/nsswitch.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/poll.h -------------------------------------------------------------------------------- /include/protocols/routed.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/protocols/rwhod.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/protocols/talkd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/protocols/timed.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/pwd.h -------------------------------------------------------------------------------- /include/rpcsvc/nis.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/rpcsvc/nis_tags.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sgtty.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/spawn.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/stab.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/bitypes.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/dir.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/param.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/queue.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/sem.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/sendfile.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/shm.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/un.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/unistd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/vlimit.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/vtimes.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sys/xattr.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/sysexits.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/tar.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/time.h -------------------------------------------------------------------------------- /include/uchar.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/include/utmp.h -------------------------------------------------------------------------------- /inet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/Makefile -------------------------------------------------------------------------------- /inet/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/Versions -------------------------------------------------------------------------------- /inet/aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/aliases.h -------------------------------------------------------------------------------- /inet/bug-if1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/bug-if1.c -------------------------------------------------------------------------------- /inet/herrno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/herrno.c -------------------------------------------------------------------------------- /inet/htonl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/htonl.c -------------------------------------------------------------------------------- /inet/htons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/htons.c -------------------------------------------------------------------------------- /inet/ifaddrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/ifaddrs.c -------------------------------------------------------------------------------- /inet/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/ifaddrs.h -------------------------------------------------------------------------------- /inet/ifreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/ifreq.c -------------------------------------------------------------------------------- /inet/rcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/rcmd.c -------------------------------------------------------------------------------- /inet/rexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/inet/rexec.c -------------------------------------------------------------------------------- /intl/Depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/intl/Depend -------------------------------------------------------------------------------- /intl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/intl/Makefile -------------------------------------------------------------------------------- /intl/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/intl/Versions -------------------------------------------------------------------------------- /intl/gettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/intl/gettext.c -------------------------------------------------------------------------------- /intl/gmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/intl/gmo.h -------------------------------------------------------------------------------- /intl/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/intl/libintl.h -------------------------------------------------------------------------------- /intl/plural.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/intl/plural.c -------------------------------------------------------------------------------- /intl/plural.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/intl/plural.y -------------------------------------------------------------------------------- /io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/Makefile -------------------------------------------------------------------------------- /io/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/Versions -------------------------------------------------------------------------------- /io/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/access.c -------------------------------------------------------------------------------- /io/bug-ftw1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/bug-ftw1.c -------------------------------------------------------------------------------- /io/bug-ftw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/bug-ftw2.c -------------------------------------------------------------------------------- /io/bug-ftw3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/bug-ftw3.c -------------------------------------------------------------------------------- /io/bug-ftw4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/bug-ftw4.c -------------------------------------------------------------------------------- /io/bug-ftw5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/bug-ftw5.c -------------------------------------------------------------------------------- /io/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/chdir.c -------------------------------------------------------------------------------- /io/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/chmod.c -------------------------------------------------------------------------------- /io/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/chown.c -------------------------------------------------------------------------------- /io/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/close.c -------------------------------------------------------------------------------- /io/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/creat.c -------------------------------------------------------------------------------- /io/creat64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/creat64.c -------------------------------------------------------------------------------- /io/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/dup.c -------------------------------------------------------------------------------- /io/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/dup2.c -------------------------------------------------------------------------------- /io/dup3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/dup3.c -------------------------------------------------------------------------------- /io/faccessat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/faccessat.c -------------------------------------------------------------------------------- /io/fchdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fchdir.c -------------------------------------------------------------------------------- /io/fchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fchmod.c -------------------------------------------------------------------------------- /io/fchmodat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fchmodat.c -------------------------------------------------------------------------------- /io/fchown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fchown.c -------------------------------------------------------------------------------- /io/fchownat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fchownat.c -------------------------------------------------------------------------------- /io/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fcntl.c -------------------------------------------------------------------------------- /io/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fcntl.h -------------------------------------------------------------------------------- /io/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/flock.c -------------------------------------------------------------------------------- /io/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fstat.c -------------------------------------------------------------------------------- /io/fstat64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fstat64.c -------------------------------------------------------------------------------- /io/fstatat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fstatat.c -------------------------------------------------------------------------------- /io/fstatat64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fstatat64.c -------------------------------------------------------------------------------- /io/fstatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fstatfs.c -------------------------------------------------------------------------------- /io/fstatfs64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fstatfs64.c -------------------------------------------------------------------------------- /io/fstatvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fstatvfs.c -------------------------------------------------------------------------------- /io/fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fts.c -------------------------------------------------------------------------------- /io/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fts.h -------------------------------------------------------------------------------- /io/ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/ftw.c -------------------------------------------------------------------------------- /io/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/ftw.h -------------------------------------------------------------------------------- /io/ftw64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/ftw64.c -------------------------------------------------------------------------------- /io/ftwtest-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/ftwtest-sh -------------------------------------------------------------------------------- /io/ftwtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/ftwtest.c -------------------------------------------------------------------------------- /io/fxstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/fxstat.c -------------------------------------------------------------------------------- /io/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/getcwd.c -------------------------------------------------------------------------------- /io/getwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/getwd.c -------------------------------------------------------------------------------- /io/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/isatty.c -------------------------------------------------------------------------------- /io/lchmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/lchmod.c -------------------------------------------------------------------------------- /io/lchown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/lchown.c -------------------------------------------------------------------------------- /io/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/link.c -------------------------------------------------------------------------------- /io/linkat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/linkat.c -------------------------------------------------------------------------------- /io/lockf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/lockf.c -------------------------------------------------------------------------------- /io/lockf64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/lockf64.c -------------------------------------------------------------------------------- /io/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/lseek.c -------------------------------------------------------------------------------- /io/lseek64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/lseek64.c -------------------------------------------------------------------------------- /io/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/lstat.c -------------------------------------------------------------------------------- /io/lstat64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/lstat64.c -------------------------------------------------------------------------------- /io/lxstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/lxstat.c -------------------------------------------------------------------------------- /io/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/mkdir.c -------------------------------------------------------------------------------- /io/mkdirat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/mkdirat.c -------------------------------------------------------------------------------- /io/mkfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/mkfifo.c -------------------------------------------------------------------------------- /io/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/mknod.c -------------------------------------------------------------------------------- /io/mknodat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/mknodat.c -------------------------------------------------------------------------------- /io/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/open.c -------------------------------------------------------------------------------- /io/open64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/open64.c -------------------------------------------------------------------------------- /io/open_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/open_2.c -------------------------------------------------------------------------------- /io/openat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/openat.c -------------------------------------------------------------------------------- /io/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/pipe.c -------------------------------------------------------------------------------- /io/pipe2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/pipe2.c -------------------------------------------------------------------------------- /io/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/poll.c -------------------------------------------------------------------------------- /io/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /io/ppoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/ppoll.c -------------------------------------------------------------------------------- /io/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/pwd.c -------------------------------------------------------------------------------- /io/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/read.c -------------------------------------------------------------------------------- /io/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/rmdir.c -------------------------------------------------------------------------------- /io/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/stat.c -------------------------------------------------------------------------------- /io/stat64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/stat64.c -------------------------------------------------------------------------------- /io/statfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/statfs.c -------------------------------------------------------------------------------- /io/statvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/statvfs.c -------------------------------------------------------------------------------- /io/symlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/symlink.c -------------------------------------------------------------------------------- /io/sys/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /io/sys/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/sys/vfs.h -------------------------------------------------------------------------------- /io/ttyname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/ttyname.c -------------------------------------------------------------------------------- /io/umask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/umask.c -------------------------------------------------------------------------------- /io/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/unlink.c -------------------------------------------------------------------------------- /io/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/utime.c -------------------------------------------------------------------------------- /io/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/utime.h -------------------------------------------------------------------------------- /io/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/write.c -------------------------------------------------------------------------------- /io/xmknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/xmknod.c -------------------------------------------------------------------------------- /io/xstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/xstat.c -------------------------------------------------------------------------------- /io/xstat64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/io/xstat64.c -------------------------------------------------------------------------------- /libc-abis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/libc-abis -------------------------------------------------------------------------------- /libidn/Banner: -------------------------------------------------------------------------------- 1 | GNU Libidn by Simon Josefsson 2 | -------------------------------------------------------------------------------- /libio/Depend: -------------------------------------------------------------------------------- 1 | localedata 2 | -------------------------------------------------------------------------------- /libio/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/libio/feof.c -------------------------------------------------------------------------------- /libio/getc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/libio/getc.c -------------------------------------------------------------------------------- /libio/putc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/libio/putc.c -------------------------------------------------------------------------------- /libio/tst-fgetwc.input: -------------------------------------------------------------------------------- 1 | йцукен 2 | qwerty 3 | -------------------------------------------------------------------------------- /libio/tst_getwc.input: -------------------------------------------------------------------------------- 1 | This is a test of getwc 2 | -------------------------------------------------------------------------------- /libio/tst_wscanf.input: -------------------------------------------------------------------------------- 1 | Hello World !! 42 2 | -------------------------------------------------------------------------------- /localedata/Depend: -------------------------------------------------------------------------------- 1 | locale 2 | -------------------------------------------------------------------------------- /localedata/bug-setlocale1-static.c: -------------------------------------------------------------------------------- 1 | #include "bug-setlocale1.c" 2 | -------------------------------------------------------------------------------- /login/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/login/pty.h -------------------------------------------------------------------------------- /login/tst-utmpx.c: -------------------------------------------------------------------------------- 1 | #define UTMPX 2 | #include "tst-utmp.c" 3 | -------------------------------------------------------------------------------- /login/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/login/utmp.h -------------------------------------------------------------------------------- /mach/mach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/mach/mach.h -------------------------------------------------------------------------------- /mach/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/mach/msg.c -------------------------------------------------------------------------------- /malloc/Depend: -------------------------------------------------------------------------------- 1 | dlfcn 2 | -------------------------------------------------------------------------------- /manual/dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/manual/dir -------------------------------------------------------------------------------- /math/cabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/cabs.c -------------------------------------------------------------------------------- /math/cabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/cabsf.c -------------------------------------------------------------------------------- /math/cabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/cabsl.c -------------------------------------------------------------------------------- /math/carg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/carg.c -------------------------------------------------------------------------------- /math/cargf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/cargf.c -------------------------------------------------------------------------------- /math/cargl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/cargl.c -------------------------------------------------------------------------------- /math/cimag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/cimag.c -------------------------------------------------------------------------------- /math/conj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/conj.c -------------------------------------------------------------------------------- /math/conjf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/conjf.c -------------------------------------------------------------------------------- /math/conjl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/conjl.c -------------------------------------------------------------------------------- /math/creal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/creal.c -------------------------------------------------------------------------------- /math/e_j0l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/e_j0l.c -------------------------------------------------------------------------------- /math/e_j1l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/e_j1l.c -------------------------------------------------------------------------------- /math/e_jnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/e_jnl.c -------------------------------------------------------------------------------- /math/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/fenv.h -------------------------------------------------------------------------------- /math/k_sincosl.c: -------------------------------------------------------------------------------- 1 | /* Empty. Not needed. */ 2 | -------------------------------------------------------------------------------- /math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/math.h -------------------------------------------------------------------------------- /math/s_fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/s_fma.c -------------------------------------------------------------------------------- /math/s_nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/s_nan.c -------------------------------------------------------------------------------- /math/w_j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_j0.c -------------------------------------------------------------------------------- /math/w_j0f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_j0f.c -------------------------------------------------------------------------------- /math/w_j0l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_j0l.c -------------------------------------------------------------------------------- /math/w_j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_j1.c -------------------------------------------------------------------------------- /math/w_j1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_j1f.c -------------------------------------------------------------------------------- /math/w_j1l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_j1l.c -------------------------------------------------------------------------------- /math/w_jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_jn.c -------------------------------------------------------------------------------- /math/w_jnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_jnf.c -------------------------------------------------------------------------------- /math/w_jnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_jnl.c -------------------------------------------------------------------------------- /math/w_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_log.c -------------------------------------------------------------------------------- /math/w_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/math/w_pow.c -------------------------------------------------------------------------------- /misc/acct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/acct.c -------------------------------------------------------------------------------- /misc/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/ar.h -------------------------------------------------------------------------------- /misc/brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/brk.c -------------------------------------------------------------------------------- /misc/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/err.c -------------------------------------------------------------------------------- /misc/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/err.h -------------------------------------------------------------------------------- /misc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/error.c -------------------------------------------------------------------------------- /misc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/error.h -------------------------------------------------------------------------------- /misc/fstab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/fstab.c -------------------------------------------------------------------------------- /misc/fstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/fstab.h -------------------------------------------------------------------------------- /misc/fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/fsync.c -------------------------------------------------------------------------------- /misc/gtty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/gtty.c -------------------------------------------------------------------------------- /misc/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/ioctl.c -------------------------------------------------------------------------------- /misc/mlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/mlock.c -------------------------------------------------------------------------------- /misc/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/mmap.c -------------------------------------------------------------------------------- /misc/msync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/msync.c -------------------------------------------------------------------------------- /misc/readv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/readv.c -------------------------------------------------------------------------------- /misc/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/sbrk.c -------------------------------------------------------------------------------- /misc/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/sgtty.h -------------------------------------------------------------------------------- /misc/sstk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/sstk.c -------------------------------------------------------------------------------- /misc/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/stab.h -------------------------------------------------------------------------------- /misc/stty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/stty.c -------------------------------------------------------------------------------- /misc/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/sync.c -------------------------------------------------------------------------------- /misc/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /misc/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /misc/ustat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/misc/ustat.c -------------------------------------------------------------------------------- /misc/ustat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /nis/Depend: -------------------------------------------------------------------------------- 1 | nss 2 | -------------------------------------------------------------------------------- /nis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nis/Makefile -------------------------------------------------------------------------------- /nis/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nis/Versions -------------------------------------------------------------------------------- /nis/libnsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nis/libnsl.h -------------------------------------------------------------------------------- /nis/nss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nis/nss -------------------------------------------------------------------------------- /nis/yp_xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nis/yp_xdr.c -------------------------------------------------------------------------------- /nis/ypclnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nis/ypclnt.c -------------------------------------------------------------------------------- /nptl/Banner: -------------------------------------------------------------------------------- 1 | Native POSIX Threads Library by Ulrich Drepper et al 2 | -------------------------------------------------------------------------------- /nptl/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nptl/TODO -------------------------------------------------------------------------------- /nptl/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nptl/descr.h -------------------------------------------------------------------------------- /nptl/eintr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nptl/eintr.c -------------------------------------------------------------------------------- /nptl/elision-conf.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /nptl/errno-loc.c: -------------------------------------------------------------------------------- 1 | #include "../csu/errno-loc.c" 2 | -------------------------------------------------------------------------------- /nptl/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nptl/perf.c -------------------------------------------------------------------------------- /nptl/res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nptl/res.c -------------------------------------------------------------------------------- /nptl/sysdeps/pthread/Subdirs: -------------------------------------------------------------------------------- 1 | nptl 2 | nptl_db 3 | -------------------------------------------------------------------------------- /nptl/sysdeps/pthread/tst-mqueue8x.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /nptl/sysdeps/unix/sysv/linux/Implies: -------------------------------------------------------------------------------- 1 | pthread 2 | -------------------------------------------------------------------------------- /nptl/sysdeps/unix/sysv/linux/i386/Implies: -------------------------------------------------------------------------------- 1 | unix/sysv/linux/x86 2 | -------------------------------------------------------------------------------- /nptl/sysdeps/unix/sysv/linux/powerpc/fork.c: -------------------------------------------------------------------------------- 1 | #include "../i386/fork.c" 2 | -------------------------------------------------------------------------------- /nptl/sysdeps/unix/sysv/linux/x86_64/Implies: -------------------------------------------------------------------------------- 1 | unix/sysv/linux/x86 2 | -------------------------------------------------------------------------------- /nptl/tpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nptl/tpp.c -------------------------------------------------------------------------------- /nptl/tst-_res1mod2.c: -------------------------------------------------------------------------------- 1 | /* Nothing. */ 2 | -------------------------------------------------------------------------------- /nptl/tst-cancel21-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel21.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancel23.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel22.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancel24-static.cc: -------------------------------------------------------------------------------- 1 | #include "tst-cancel24.cc" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancel5.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel4.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx1.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel1.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx10.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel10.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx11.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel11.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx12.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel12.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx13.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel13.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx14.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel14.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx15.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel15.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx16.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel16.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx17.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel17.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx18.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel18.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx2.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel2.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx20.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel20.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx21.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel21.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx3.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel3.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx4.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel4.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx5.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel5.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx6.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel6.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx7.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel7.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx8.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel8.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cancelx9.c: -------------------------------------------------------------------------------- 1 | #include "tst-cancel9.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cleanupx0.c: -------------------------------------------------------------------------------- 1 | #include "tst-cleanup0.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cleanupx1.c: -------------------------------------------------------------------------------- 1 | #include "tst-cleanup1.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cleanupx2.c: -------------------------------------------------------------------------------- 1 | #include "tst-cleanup2.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cleanupx3.c: -------------------------------------------------------------------------------- 1 | #include "tst-cleanup3.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cleanupx4.c: -------------------------------------------------------------------------------- 1 | #include "tst-cleanup4.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-cond8-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-cond8.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-execstack-mod.c: -------------------------------------------------------------------------------- 1 | #include "../elf/tst-execstack-mod.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-initializers1-c89.c: -------------------------------------------------------------------------------- 1 | #include "tst-initializers1.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-initializers1-c99.c: -------------------------------------------------------------------------------- 1 | #include "tst-initializers1.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-initializers1-gnu89.c: -------------------------------------------------------------------------------- 1 | #include "tst-initializers1.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-initializers1-gnu99.c: -------------------------------------------------------------------------------- 1 | #include "tst-initializers1.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-join6.c: -------------------------------------------------------------------------------- 1 | #define WAIT_IN_CHILD 1 2 | #include "tst-join5.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-mutex8-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-mutex8.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-mutexpi2.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-mutex2.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-mutexpi3.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-mutex3.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-mutexpi4.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-mutex4.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-mutexpi5.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-mutex5.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-mutexpi5a.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-mutex5a.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-mutexpi7.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-mutex7.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-mutexpi7a.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-mutex7a.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-mutexpi8-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-mutexpi8.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-mutexpi8.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-mutex8.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-mutexpi9.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-mutex9.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-oncex3.c: -------------------------------------------------------------------------------- 1 | #include "tst-once3.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-oncex4.c: -------------------------------------------------------------------------------- 1 | #include "tst-once4.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-robustpi1.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-robust1.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-robustpi2.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-robust2.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-robustpi3.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-robust3.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-robustpi4.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-robust4.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-robustpi5.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-robust5.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-robustpi6.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-robust6.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-robustpi7.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-robust7.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-robustpi8.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-robust8.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-robustpi9.c: -------------------------------------------------------------------------------- 1 | #define ENABLE_PI 1 2 | #include "tst-robust9.c" 3 | -------------------------------------------------------------------------------- /nptl/tst-sem11-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-sem11.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-sem12-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-sem12.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-setuid1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-setuid1.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-stackguard1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-stackguard1.c" 2 | -------------------------------------------------------------------------------- /nptl/tst-vfork1.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /nptl/tst-vfork1x.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /nptl/tst-vfork2.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /nptl/tst-vfork2x.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /nptl/vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nptl/vars.c -------------------------------------------------------------------------------- /nscd/Depend: -------------------------------------------------------------------------------- 1 | linuxthreads 2 | -------------------------------------------------------------------------------- /nscd/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nscd/cache.c -------------------------------------------------------------------------------- /nscd/gai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nscd/gai.c -------------------------------------------------------------------------------- /nscd/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nscd/mem.c -------------------------------------------------------------------------------- /nscd/nscd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nscd/nscd.c -------------------------------------------------------------------------------- /nscd/nscd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nscd/nscd.h -------------------------------------------------------------------------------- /nss/Depend: -------------------------------------------------------------------------------- 1 | dlfcn 2 | resolv 3 | -------------------------------------------------------------------------------- /nss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nss/Makefile -------------------------------------------------------------------------------- /nss/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nss/Versions -------------------------------------------------------------------------------- /nss/getent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nss/getent.c -------------------------------------------------------------------------------- /nss/makedb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nss/makedb.c -------------------------------------------------------------------------------- /nss/nss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/nss/nss.h -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- 1 | *.mo 2 | libc.pot.files 3 | -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/ia.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/libc.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/libc.pot -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/rw.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /ports/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/ports/README -------------------------------------------------------------------------------- /ports/sysdeps/alpha/Subdirs: -------------------------------------------------------------------------------- 1 | soft-fp 2 | -------------------------------------------------------------------------------- /ports/sysdeps/alpha/backtrace.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/alpha/ffsll.S: -------------------------------------------------------------------------------- 1 | /* This function is defined in ffs.S. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/alpha/fpu/s_isnanf.c: -------------------------------------------------------------------------------- 1 | /* In s_isnan.c */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/alpha/fpu/s_llrint.c: -------------------------------------------------------------------------------- 1 | /* In s_lrint.c */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/alpha/fpu/s_llrintf.c: -------------------------------------------------------------------------------- 1 | /* In s_lrintf.c */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/alpha/fpu/s_llround.c: -------------------------------------------------------------------------------- 1 | /* In s_lround.c. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/alpha/fpu/s_llroundf.c: -------------------------------------------------------------------------------- 1 | /* In s_lroundf.c. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/alpha/tininess.h: -------------------------------------------------------------------------------- 1 | #define TININESS_AFTER_ROUNDING 1 2 | -------------------------------------------------------------------------------- /ports/sysdeps/am33/tininess.h: -------------------------------------------------------------------------------- 1 | #define TININESS_AFTER_ROUNDING 1 2 | -------------------------------------------------------------------------------- /ports/sysdeps/arm/armv6/stpcpy.S: -------------------------------------------------------------------------------- 1 | /* Defined in strcpy.S. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/arm/framestate.c: -------------------------------------------------------------------------------- 1 | /* Empty */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/arm/sub_n.S: -------------------------------------------------------------------------------- 1 | #define USE_AS_SUB_N 2 | #include "add_n.S" 3 | -------------------------------------------------------------------------------- /ports/sysdeps/arm/unwind-pe.c: -------------------------------------------------------------------------------- 1 | /* Empty */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/hppa/mp_clz_tab.c: -------------------------------------------------------------------------------- 1 | /* __clz_tab not needed on hppa. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/hppa/tininess.h: -------------------------------------------------------------------------------- 1 | #define TININESS_AFTER_ROUNDING 1 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/backtrace.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/branred.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/doasin.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/dosincos.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_atan2l.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_expl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_gamma_r.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_gammaf_r.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_gammal_r.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_log10.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_log10f.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_log10l.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_rem_pio2.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_rem_pio2f.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/e_rem_pio2l.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/halfulp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/k_rem_pio2.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/k_rem_pio2f.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/k_rem_pio2l.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/mpa.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/mpatan.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/mpatan2.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/mpexp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/mplog.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/mpsqrt.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/mptan.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/s_sin.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/s_sincos.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/s_sincosf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/s_sincosl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/s_sinf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/s_sinl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/sincos32.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/slowexp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/slowpow.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/t_exp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_acos.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_acosf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_acosh.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_acoshf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_acoshl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_acosl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_asin.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_asinf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_asinl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_atan2.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_atan2f.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_atan2l.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_atanh.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_atanhf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_atanhl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_cosh.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_coshf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_coshl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_exp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_exp10.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_exp10f.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_exp10l.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_exp2.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_exp2f.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_exp2l.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_expf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_expl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_fmod.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_fmodf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_fmodl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_hypot.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_hypotf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_hypotl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_lgamma_r.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_lgammaf_r.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_lgammal_r.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_log.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_log10.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_log10f.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_log10l.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_log2.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_log2f.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_log2l.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_logf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_logl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_pow.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_powf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_powl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_remainder.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_remainderf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_remainderl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_scalb.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_scalbf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_scalbl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_sinh.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_sinhf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_sinhl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_sqrt.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_sqrtf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/fpu/w_sqrtl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/ldbl2mpn.c: -------------------------------------------------------------------------------- 1 | #include "../i386/ldbl2mpn.c" 2 | -------------------------------------------------------------------------------- /ports/sysdeps/ia64/tininess.h: -------------------------------------------------------------------------------- 1 | #define TININESS_AFTER_ROUNDING 1 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/Implies: -------------------------------------------------------------------------------- 1 | ieee754/ldbl-96 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/branred.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/doasin.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/dosincos.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/halfulp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/k_cosl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/k_sinl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/k_tanf.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/k_tanl.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/mpa.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/mpatan.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/mpatan2.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/mpexp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/mplog.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/mpsqrt.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/mptan.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/sincos32.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/sincostab.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/slowexp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/slowpow.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/fpu/t_exp.c: -------------------------------------------------------------------------------- 1 | /* Empty. Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/m680x0/m68020/wordcopy.S: -------------------------------------------------------------------------------- 1 | /* Empty, not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/m68k/shlib-versions: -------------------------------------------------------------------------------- 1 | m68k-.*-linux.* libgcc_s=2 2 | -------------------------------------------------------------------------------- /ports/sysdeps/mips/backtrace.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/mips/mips32/mips16/add_n.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/mips/mips32/mips16/lshift.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/mips/mips32/mips16/mul_1.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/mips/mips32/mips16/rshift.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/mips/mips32/mips16/sub_n.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/mips/tininess.h: -------------------------------------------------------------------------------- 1 | #define TININESS_AFTER_ROUNDING 1 2 | -------------------------------------------------------------------------------- /ports/sysdeps/powerpc/nofpu/Subdirs: -------------------------------------------------------------------------------- 1 | soft-fp 2 | -------------------------------------------------------------------------------- /ports/sysdeps/powerpc/powerpc32/e500/fpu/fprrest.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/powerpc/powerpc32/e500/fpu/fprsave.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/powerpc/powerpc32/e500/fpu/t_sqrt.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/powerpc/powerpc32/e500/soft-fp/Subdirs: -------------------------------------------------------------------------------- 1 | soft-fp 2 | -------------------------------------------------------------------------------- /ports/sysdeps/tile/backtrace.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/tile/ffsll.c: -------------------------------------------------------------------------------- 1 | /* This function is defined in ffs.c. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/tile/s_fma.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/tile/s_fmaf.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/tile/tilepro/Implies: -------------------------------------------------------------------------------- 1 | tile 2 | wordsize-32 3 | -------------------------------------------------------------------------------- /ports/sysdeps/unix/alpha/rt-sysdep.S: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/unix/mips/rt-sysdep.S: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/unix/sysv/linux/alpha/dl-brk.S: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/unix/sysv/linux/arm/oldgetrlimit.c: -------------------------------------------------------------------------------- 1 | /* Empty. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/unix/sysv/linux/arm/oldsetrlimit.c: -------------------------------------------------------------------------------- 1 | /* Empty. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/unix/sysv/linux/ia64/dl-brk.S: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/unix/sysv/linux/ia64/rt-sysdep.S: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /ports/sysdeps/unix/sysv/linux/mips/mips64/ftruncate64.c: -------------------------------------------------------------------------------- 1 | /* Empty. */ 2 | -------------------------------------------------------------------------------- /ports/sysdeps/unix/sysv/linux/mips/mips64/truncate64.c: -------------------------------------------------------------------------------- 1 | /* Empty. */ 2 | -------------------------------------------------------------------------------- /posix/Depend: -------------------------------------------------------------------------------- 1 | localedata 2 | -------------------------------------------------------------------------------- /posix/PTESTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/posix/PTESTS -------------------------------------------------------------------------------- /posix/TESTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/posix/TESTS -------------------------------------------------------------------------------- /posix/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/posix/cpio.h -------------------------------------------------------------------------------- /posix/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/posix/fork.c -------------------------------------------------------------------------------- /posix/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/posix/glob.c -------------------------------------------------------------------------------- /posix/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/posix/glob.h -------------------------------------------------------------------------------- /posix/init-posix.c: -------------------------------------------------------------------------------- 1 | /* Nothing to do. */ 2 | -------------------------------------------------------------------------------- /posix/sys/unistd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /posix/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/posix/tar.h -------------------------------------------------------------------------------- /posix/tst-exec-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-exec.c" 2 | -------------------------------------------------------------------------------- /posix/tst-spawn-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-spawn.c" 2 | -------------------------------------------------------------------------------- /posix/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/posix/wait.c -------------------------------------------------------------------------------- /posix/wait.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pwd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/pwd/Makefile -------------------------------------------------------------------------------- /pwd/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/pwd/Versions -------------------------------------------------------------------------------- /pwd/getpw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/pwd/getpw.c -------------------------------------------------------------------------------- /pwd/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/pwd/pwd.h -------------------------------------------------------------------------------- /resolv/Banner: -------------------------------------------------------------------------------- 1 | BIND-8.2.3-T5B 2 | -------------------------------------------------------------------------------- /resolv/Depend: -------------------------------------------------------------------------------- 1 | linuxthreads 2 | nptl 3 | -------------------------------------------------------------------------------- /rt/Depend: -------------------------------------------------------------------------------- 1 | linuxthreads 2 | nptl 3 | -------------------------------------------------------------------------------- /rt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/rt/Makefile -------------------------------------------------------------------------------- /rt/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/rt/Versions -------------------------------------------------------------------------------- /rt/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/rt/aio.h -------------------------------------------------------------------------------- /rt/aio_read64.c: -------------------------------------------------------------------------------- 1 | #define BE_AIO64 2 | #include 3 | -------------------------------------------------------------------------------- /rt/aio_write64.c: -------------------------------------------------------------------------------- 1 | #define BE_AIO64 2 | #include 3 | -------------------------------------------------------------------------------- /rt/lio_listio64.c: -------------------------------------------------------------------------------- 1 | #define BE_AIO64 2 | #include 3 | -------------------------------------------------------------------------------- /rt/mq_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/rt/mq_open.c -------------------------------------------------------------------------------- /rt/mq_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/rt/mq_send.c -------------------------------------------------------------------------------- /rt/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/rt/mqueue.h -------------------------------------------------------------------------------- /rt/tst-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/rt/tst-aio.c -------------------------------------------------------------------------------- /rt/tst-shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/rt/tst-shm.c -------------------------------------------------------------------------------- /scripts/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/scripts/cpp -------------------------------------------------------------------------------- /signal/sys/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /stdio-common/Depend: -------------------------------------------------------------------------------- 1 | localedata 2 | -------------------------------------------------------------------------------- /stdio-common/bug1.input: -------------------------------------------------------------------------------- 1 | 95 2 | -------------------------------------------------------------------------------- /stdio-common/bug6.input: -------------------------------------------------------------------------------- 1 | XY 1234L 2 | -------------------------------------------------------------------------------- /stdio-common/scanf12.input: -------------------------------------------------------------------------------- 1 | + foo 2 | -------------------------------------------------------------------------------- /stdio-common/tst-ferror.input: -------------------------------------------------------------------------------- 1 | This is a test. 2 | -------------------------------------------------------------------------------- /stdio-common/tst-gets.input: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | -------------------------------------------------------------------------------- /stdlib/Depend: -------------------------------------------------------------------------------- 1 | localedata 2 | -------------------------------------------------------------------------------- /stdlib/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/stdlib/abs.c -------------------------------------------------------------------------------- /stdlib/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/stdlib/cmp.c -------------------------------------------------------------------------------- /stdlib/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/stdlib/div.c -------------------------------------------------------------------------------- /stdlib/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/stdlib/gmp.h -------------------------------------------------------------------------------- /stdlib/groupingwc.c: -------------------------------------------------------------------------------- 1 | #define USE_WIDE_CHAR 1 2 | #include "grouping.c" 3 | -------------------------------------------------------------------------------- /stdlib/ldbl2mpn.c: -------------------------------------------------------------------------------- 1 | /* Empty. Not needed unless ldbl support is in. */ 2 | -------------------------------------------------------------------------------- /stdlib/mpn2ldbl.c: -------------------------------------------------------------------------------- 1 | /* Empty. Not needed unless ldbl support is in. */ 2 | -------------------------------------------------------------------------------- /stdlib/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/stdlib/mul.c -------------------------------------------------------------------------------- /stdlib/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /streams/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /string/Depend: -------------------------------------------------------------------------------- 1 | localedata 2 | -------------------------------------------------------------------------------- /string/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/string/ffs.c -------------------------------------------------------------------------------- /sunrpc/svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/sunrpc/svc.c -------------------------------------------------------------------------------- /sunrpc/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/sunrpc/xdr.c -------------------------------------------------------------------------------- /sysdeps/generic/libcidn.abilist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysdeps/generic/libnss_compat.abilist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysdeps/generic/libnss_db.abilist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysdeps/generic/libnss_dns.abilist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysdeps/generic/libnss_files.abilist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysdeps/generic/libnss_hesiod.abilist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysdeps/generic/libnss_nis.abilist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysdeps/generic/libnss_nisplus.abilist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysdeps/gnu/rt-unwind-resume.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/i386/____longjmp_chk.S: -------------------------------------------------------------------------------- 1 | #error "OS-specific version needed" 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/Implies: -------------------------------------------------------------------------------- 1 | x86/fpu 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/doasin.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/halfulp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/mpatan.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/mpatan2.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/mpexp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/mplog.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/mpsqrt.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/slowexp.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/slowpow.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/i386/fpu/t_exp.c: -------------------------------------------------------------------------------- 1 | /* Empty. Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/i386/i586/memusage.h: -------------------------------------------------------------------------------- 1 | #include "../i686/memusage.h" 2 | -------------------------------------------------------------------------------- /sysdeps/i386/mp_clz_tab.c: -------------------------------------------------------------------------------- 1 | /* __clz_tab not needed on i386. */ 2 | -------------------------------------------------------------------------------- /sysdeps/ieee754/dbl-64/e_acos.c: -------------------------------------------------------------------------------- 1 | /* In e_asin.c */ 2 | -------------------------------------------------------------------------------- /sysdeps/ieee754/dbl-64/k_cos.c: -------------------------------------------------------------------------------- 1 | /* Not needed anymore. */ 2 | -------------------------------------------------------------------------------- /sysdeps/ieee754/dbl-64/k_sin.c: -------------------------------------------------------------------------------- 1 | /* Not needed anymore. */ 2 | -------------------------------------------------------------------------------- /sysdeps/ieee754/dbl-64/k_tan.c: -------------------------------------------------------------------------------- 1 | /* Not needed anymore. */ 2 | -------------------------------------------------------------------------------- /sysdeps/ieee754/dbl-64/s_cos.c: -------------------------------------------------------------------------------- 1 | /* In s_sin.c. */ 2 | -------------------------------------------------------------------------------- /sysdeps/ieee754/ldbl-128/Makefile: -------------------------------------------------------------------------------- 1 | long-double-fcts = yes 2 | -------------------------------------------------------------------------------- /sysdeps/mach/hurd/getdents.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/powerpc/mp_clz_tab.c: -------------------------------------------------------------------------------- 1 | /* __clz_tab not needed on powerpc. */ 2 | -------------------------------------------------------------------------------- /sysdeps/powerpc/powerpc32/Implies: -------------------------------------------------------------------------------- 1 | wordsize-32 2 | -------------------------------------------------------------------------------- /sysdeps/powerpc/powerpc64/Implies: -------------------------------------------------------------------------------- 1 | wordsize-64 2 | -------------------------------------------------------------------------------- /sysdeps/s390/s390-32/Implies: -------------------------------------------------------------------------------- 1 | wordsize-32 2 | -------------------------------------------------------------------------------- /sysdeps/s390/s390-64/Implies: -------------------------------------------------------------------------------- 1 | wordsize-64 2 | -------------------------------------------------------------------------------- /sysdeps/sh/backtrace.c: -------------------------------------------------------------------------------- 1 | #include "../x86_64/backtrace.c" 2 | -------------------------------------------------------------------------------- /sysdeps/sh/tininess.h: -------------------------------------------------------------------------------- 1 | #define TININESS_AFTER_ROUNDING 1 2 | -------------------------------------------------------------------------------- /sysdeps/sparc/Subdirs: -------------------------------------------------------------------------------- 1 | soft-fp 2 | -------------------------------------------------------------------------------- /sysdeps/sparc/sparc32/bzero.c: -------------------------------------------------------------------------------- 1 | /* bzero is in memset.S */ 2 | -------------------------------------------------------------------------------- /sysdeps/sparc/sparc32/sparcv8/Makefile: -------------------------------------------------------------------------------- 1 | sysdep-CFLAGS += -mcpu=v8 2 | -------------------------------------------------------------------------------- /sysdeps/sparc/sparc32/sparcv9/bzero.c: -------------------------------------------------------------------------------- 1 | /* bzero is in memset.S */ 2 | -------------------------------------------------------------------------------- /sysdeps/sparc/sparc32/sparcv9/strlen.S: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/sparc/sparc64/bzero.c: -------------------------------------------------------------------------------- 1 | /* bzero is in memset.S */ 2 | -------------------------------------------------------------------------------- /sysdeps/sparc/sparc64/rtld-memset.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/Implies: -------------------------------------------------------------------------------- 1 | posix 2 | -------------------------------------------------------------------------------- /sysdeps/unix/Subdirs: -------------------------------------------------------------------------------- 1 | login 2 | -------------------------------------------------------------------------------- /sysdeps/unix/bsd/bsd4.4/sigvec.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/bits/initspin.h: -------------------------------------------------------------------------------- 1 | /* No thread support. */ 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/bits/sysctl.h: -------------------------------------------------------------------------------- 1 | /* Empty file. */ 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/dl-getcwd.c: -------------------------------------------------------------------------------- 1 | #include "getcwd.c" 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/i386/Implies: -------------------------------------------------------------------------------- 1 | unix/sysv/linux/x86 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/net/ppp-comp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/nfs/nfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/nice.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/powerpc/dl-brk.S: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/powerpc/rt-sysdep.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/s390/rt-sysdep.S: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/sparc/rt-sysdep.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/sparc/sparc64/dl-brk.S: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/ualarm.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/vfork.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: -------------------------------------------------------------------------------- 1 | /* No llseek for x32. */ 2 | -------------------------------------------------------------------------------- /sysdeps/wordsize-64/ftw64.c: -------------------------------------------------------------------------------- 1 | /* Defined in ftw.c. */ 2 | -------------------------------------------------------------------------------- /sysdeps/x86/tininess.h: -------------------------------------------------------------------------------- 1 | #define TININESS_AFTER_ROUNDING 1 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/64/Implies-after: -------------------------------------------------------------------------------- 1 | wordsize-64 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/____longjmp_chk.S: -------------------------------------------------------------------------------- 1 | #error "OS-specific version needed" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/bzero.S: -------------------------------------------------------------------------------- 1 | /* Implemented in memset.S. */ 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/Implies: -------------------------------------------------------------------------------- 1 | x86/fpu 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/e_acosl.c: -------------------------------------------------------------------------------- 1 | #include "sysdeps/i386/fpu/e_acosl.c" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/e_sqrtl.c: -------------------------------------------------------------------------------- 1 | #include "sysdeps/i386/fpu/e_sqrtl.c" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/k_rem_pio2l.c: -------------------------------------------------------------------------------- 1 | /* Not needed. */ 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/s_atanl.c: -------------------------------------------------------------------------------- 1 | #include "sysdeps/i386/fpu/s_atanl.c" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/s_isinfl.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/s_isnanl.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/s_logbl.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/s_lrint.S: -------------------------------------------------------------------------------- 1 | /* Not needed, see s_llrint.S. */ 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/s_lrintf.S: -------------------------------------------------------------------------------- 1 | /* Not needed, see s_llrintf.S. */ 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/s_lrintl.S: -------------------------------------------------------------------------------- 1 | /* Not needed, see s_llrintl.S. */ 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/fpu/s_rintl.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/ldbl2mpn.c: -------------------------------------------------------------------------------- 1 | #include "../i386/ldbl2mpn.c" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/mp_clz_tab.c: -------------------------------------------------------------------------------- 1 | /* __clz_tab not needed on x86-64. */ 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/multiarch/rtld-memcmp.c: -------------------------------------------------------------------------------- 1 | #include "../rtld-memcmp.c" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/multiarch/rtld-strlen.S: -------------------------------------------------------------------------------- 1 | #include "../rtld-strlen.S" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/rtld-memcmp.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/strcasecmp.S: -------------------------------------------------------------------------------- 1 | /* In strcasecmp_l.S. */ 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/strncase.S: -------------------------------------------------------------------------------- 1 | /* In strncase_l.S. */ 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/tst-audit7.c: -------------------------------------------------------------------------------- 1 | #include "tst-audit6.c" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/tst-auditmod7a.c: -------------------------------------------------------------------------------- 1 | #include "tst-auditmod6a.c" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/tst-quad1pie.c: -------------------------------------------------------------------------------- 1 | #include "tst-quad1.c" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/tst-quad2.c: -------------------------------------------------------------------------------- 1 | #include "tst-quad1.c" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/tst-quad2pie.c: -------------------------------------------------------------------------------- 1 | #include "tst-quad2.c" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/tst-quadmod2pie.S: -------------------------------------------------------------------------------- 1 | #include "tst-quadmod2.S" 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/x32/Implies-after: -------------------------------------------------------------------------------- 1 | wordsize-32 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/x32/divdi3.c: -------------------------------------------------------------------------------- 1 | /* Fortunately nothing to do. */ 2 | -------------------------------------------------------------------------------- /sysdeps/x86_64/x32/symbol-hacks.h: -------------------------------------------------------------------------------- 1 | /* Fortunately nothing to do. */ 2 | -------------------------------------------------------------------------------- /time/Depend: -------------------------------------------------------------------------------- 1 | timezone 2 | -------------------------------------------------------------------------------- /time/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/time/clock.c -------------------------------------------------------------------------------- /time/ctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/time/ctime.c -------------------------------------------------------------------------------- /time/datemsk: -------------------------------------------------------------------------------- 1 | %H:%M:%S %F 2 | %d-%m-%Y %T 3 | -------------------------------------------------------------------------------- /time/era.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/time/era.c -------------------------------------------------------------------------------- /time/ftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/time/ftime.c -------------------------------------------------------------------------------- /time/stime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/time/stime.c -------------------------------------------------------------------------------- /time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/time/time.c -------------------------------------------------------------------------------- /time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/time/time.h -------------------------------------------------------------------------------- /time/tzset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/time/tzset.c -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/eglibc/HEAD/version.h -------------------------------------------------------------------------------- /wcsmbs/Depend: -------------------------------------------------------------------------------- 1 | localedata 2 | --------------------------------------------------------------------------------