├── .gitignore ├── .travis.yml ├── AUTHORS ├── CREDITS ├── Makefile.am ├── README ├── README.rst ├── TODO ├── UNLICENSE ├── VERSION ├── autogen.sh ├── configure.ac ├── doc ├── examples │ ├── exit42 │ │ ├── .gitignore │ │ ├── Makefile │ │ └── exit42.c │ └── hello │ │ ├── .gitignore │ │ ├── Makefile │ │ └── hello.c └── manual │ ├── .build │ └── .gitkeep │ ├── .extensions │ └── .gitignore │ ├── .gitignore │ ├── .gitkeep │ ├── .static │ └── .gitkeep │ ├── .templates │ └── .gitkeep │ ├── Makefile │ ├── assert │ └── index.rst │ ├── complex │ └── index.rst │ ├── conf.py │ ├── contrib.rst │ ├── contrib │ ├── bugs.rst │ ├── documentation.rst │ ├── donations.rst │ ├── patches.rst │ └── style.rst │ ├── ctype │ ├── index.rst │ ├── isalnum.rst │ ├── isalpha.rst │ ├── isascii.rst │ ├── isblank.rst │ ├── iscntrl.rst │ ├── isdigit.rst │ ├── isgraph.rst │ ├── islower.rst │ ├── isprint.rst │ ├── ispunct.rst │ ├── isspace.rst │ ├── isupper.rst │ ├── isxdigit.rst │ ├── tolower.rst │ └── toupper.rst │ ├── errno │ └── index.rst │ ├── faq.rst │ ├── fenv │ └── index.rst │ ├── float │ └── index.rst │ ├── glossary.rst │ ├── index.rst │ ├── install.rst │ ├── intro.rst │ ├── inttypes │ └── index.rst │ ├── iso646 │ └── index.rst │ ├── license.rst │ ├── limits │ └── index.rst │ ├── locale │ └── index.rst │ ├── math │ └── index.rst │ ├── notes.rst │ ├── schema │ └── .gitkeep │ ├── setjmp │ └── index.rst │ ├── signal │ └── index.rst │ ├── status.rst │ ├── stdalign │ └── index.rst │ ├── stdarg │ └── index.rst │ ├── stdatomic │ └── index.rst │ ├── stdbool │ └── index.rst │ ├── stddef │ └── index.rst │ ├── stdint │ └── index.rst │ ├── stdio │ ├── index.rst │ ├── snprintf.rst │ ├── sprintf.rst │ ├── vsnprintf.rst │ └── vsprintf.rst │ ├── stdlib │ ├── _Exit.rst │ ├── abort.rst │ ├── abs.rst │ ├── exit.rst │ ├── index.rst │ ├── labs.rst │ ├── llabs.rst │ └── quick_exit.rst │ ├── stdnoreturn │ └── index.rst │ ├── string │ ├── index.rst │ ├── memchr.rst │ ├── memcmp.rst │ ├── memcpy.rst │ ├── memmove.rst │ ├── memset.rst │ ├── strcmp.rst │ ├── strlen.rst │ ├── strncmp.rst │ └── strnlen.rst │ ├── tgmath │ └── index.rst │ ├── threads │ └── index.rst │ ├── time │ └── index.rst │ ├── uchar │ └── index.rst │ ├── wchar │ └── index.rst │ └── wctype │ └── index.rst ├── etc ├── .gitignore ├── aclocal │ ├── .gitkeep │ ├── ab_check_builtin.m4 │ └── ax_compiler_vendor.m4 ├── buildbot │ ├── master │ │ ├── .gitignore │ │ ├── buildbot.tac │ │ ├── crontab │ │ ├── master.cfg │ │ ├── nginx │ │ │ └── build.libc11.org │ │ ├── public_html │ │ │ ├── bg_gradient.jpg │ │ │ ├── default.css │ │ │ ├── favicon.ico │ │ │ └── robots.txt │ │ └── templates │ │ │ └── README.txt │ └── slaves │ │ ├── .template │ │ └── buildbot.tac │ │ ├── freebsd-10.1-x86_64 │ │ ├── .gitignore │ │ ├── buildbot.tac │ │ ├── crontab │ │ └── info │ │ │ ├── access_uri │ │ │ ├── admin │ │ │ └── host │ │ ├── netbsd-6.1.5-x86_64 │ │ ├── .gitignore │ │ ├── buildbot.tac │ │ ├── crontab │ │ └── info │ │ │ ├── access_uri │ │ │ ├── admin │ │ │ └── host │ │ ├── openbsd-5.6-x86_64 │ │ ├── .gitignore │ │ ├── buildbot.tac │ │ ├── crontab │ │ └── info │ │ │ ├── access_uri │ │ │ ├── admin │ │ │ └── host │ │ ├── osx-10.7.5-x86_64 │ │ ├── .gitignore │ │ ├── buildbot.tac │ │ ├── crontab │ │ └── info │ │ │ ├── access_uri │ │ │ ├── admin │ │ │ └── host │ │ ├── solaris-11.2-x86_64 │ │ ├── .gitignore │ │ ├── buildbot.tac │ │ ├── crontab │ │ └── info │ │ │ ├── access_uri │ │ │ ├── admin │ │ │ └── host │ │ ├── ubuntu-14.04-armhf │ │ ├── .gitignore │ │ ├── buildbot.tac │ │ ├── crontab │ │ └── info │ │ │ ├── access_uri │ │ │ ├── admin │ │ │ └── host │ │ └── ubuntu-14.04-x86_64 │ │ ├── .gitignore │ │ ├── buildbot.tac │ │ ├── crontab │ │ └── info │ │ ├── access_uri │ │ ├── admin │ │ └── host ├── coverity │ └── model.c ├── doap.rdf └── rdf │ ├── .gitignore │ ├── assert.ttl │ ├── complex.ttl │ ├── ctype.ttl │ ├── errno.ttl │ ├── fenv.ttl │ ├── float.ttl │ ├── inttypes.ttl │ ├── iso646.ttl │ ├── limits.ttl │ ├── locale.ttl │ ├── math.ttl │ ├── schema.ttl │ ├── setjmp.ttl │ ├── signal.ttl │ ├── stdalign.ttl │ ├── stdarg.ttl │ ├── stdatomic.ttl │ ├── stdbool.ttl │ ├── stddef.ttl │ ├── stdint.ttl │ ├── stdio.ttl │ ├── stdlib.ttl │ ├── stdnoreturn.ttl │ ├── string.ttl │ ├── tgmath.ttl │ ├── threads.ttl │ ├── time.ttl │ ├── uchar.ttl │ ├── wchar.ttl │ └── wctype.ttl ├── lib └── Makefile.am ├── man └── Makefile.am ├── src ├── .gitignore ├── Makefile.am ├── assert │ └── Makefile.am ├── complex │ └── Makefile.am ├── ctype │ ├── Makefile.am │ ├── isalnum.c │ ├── isalpha.c │ ├── isascii.c │ ├── isblank.c │ ├── iscntrl.c │ ├── isdigit.c │ ├── isgraph.c │ ├── islower.c │ ├── isprint.c │ ├── ispunct.c │ ├── isspace.c │ ├── isupper.c │ ├── isxdigit.c │ ├── tolower.c │ └── toupper.c ├── errno │ ├── Makefile.am │ └── errno.c ├── fenv │ └── Makefile.am ├── include │ ├── Makefile.am │ ├── assert.h │ ├── ctype.h │ ├── errno.h │ ├── float.h │ ├── inttypes.h │ ├── iso646.h │ ├── limits.h │ ├── locale.h │ ├── signal.h │ ├── stdalign.h │ ├── stdarg.h │ ├── stdatomic.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── stdnoreturn.h │ ├── string.h │ └── unistd.h ├── inttypes │ └── Makefile.am ├── locale │ ├── Makefile.am │ ├── localeconv.c │ └── setlocale.c ├── math │ ├── Makefile.am │ ├── fabs.c │ ├── fmod.c │ ├── ldexp.c │ └── pow.c ├── setjmp │ └── Makefile.am ├── signal │ └── Makefile.am ├── stdarg │ └── Makefile.am ├── stdio │ ├── Makefile.am │ ├── clearerr.c │ ├── fclose.c │ ├── feof.c │ ├── ferror.c │ ├── fflush.c │ ├── fgetc.c │ ├── fputc.c │ ├── fputs.c │ ├── getc.c │ ├── getchar.c │ ├── putc.c │ ├── putchar.c │ ├── puts.c │ ├── snprintf.c │ ├── sprintf.c │ ├── vsnprintf.c │ └── vsprintf.c ├── stdlib │ ├── Makefile.am │ ├── _Exit.c │ ├── abort.c │ ├── abs.c │ ├── exit.c │ ├── labs.c │ ├── llabs.c │ └── quick_exit.c ├── string │ ├── Makefile.am │ ├── memchr.c │ ├── memcmp.c │ ├── memcpy.c │ ├── memmove.c │ ├── memset.c │ ├── strcat.c │ ├── strchr.c │ ├── strcmp.c │ ├── strcoll.c │ ├── strcpy.c │ ├── strcspn.c │ ├── strerror.c │ ├── strlen.c │ ├── strncat.c │ ├── strncmp.c │ ├── strncpy.c │ ├── strnlen.c │ ├── strpbrk.c │ ├── strrchr.c │ ├── strspn.c │ ├── strstr.c │ ├── strtok.c │ └── strxfrm.c ├── threads │ └── Makefile.am ├── time │ └── Makefile.am ├── uchar │ └── Makefile.am └── unistd │ └── Makefile.am ├── sys ├── .gitignore ├── Makefile.am ├── posix │ ├── Makefile.am │ ├── __sysio_close.c │ ├── __sysio_errno.c │ ├── __sysio_write.c │ ├── bsd │ │ ├── Makefile.am │ │ └── x86_64 │ │ │ ├── Makefile.am │ │ │ ├── __sys_close.S │ │ │ ├── __sys_exit.S │ │ │ ├── __sys_write.S │ │ │ └── crt0.S │ ├── darwin │ │ ├── Makefile.am │ │ └── x86_64 │ │ │ ├── Makefile.am │ │ │ ├── __sys_close.S │ │ │ ├── __sys_exit.S │ │ │ ├── __sys_write.S │ │ │ └── crt0.S │ ├── linux │ │ ├── Makefile.am │ │ ├── arm │ │ │ ├── Makefile.am │ │ │ ├── __sys_close.S │ │ │ ├── __sys_exit.S │ │ │ ├── __sys_write.S │ │ │ └── crt0.S │ │ ├── x86 │ │ │ ├── Makefile.am │ │ │ ├── __sys_close.S │ │ │ ├── __sys_exit.S │ │ │ ├── __sys_write.S │ │ │ └── crt0.S │ │ └── x86_64 │ │ │ ├── Makefile.am │ │ │ ├── __sys_close.S │ │ │ ├── __sys_exit.S │ │ │ ├── __sys_write.S │ │ │ └── crt0.S │ ├── none │ │ ├── Makefile.am │ │ ├── __sys_close.c │ │ ├── __sys_exit.c │ │ ├── __sys_write.c │ │ ├── arm │ │ ├── crt0.c │ │ ├── x86 │ │ └── x86_64 │ ├── stderr.c │ ├── stdin.c │ ├── stdout.c │ └── sysio_file.h ├── syscall.h ├── sysio.h └── windows │ └── Makefile.am └── test ├── .gitignore ├── Makefile.am ├── assert └── Makefile.am ├── complex └── Makefile.am ├── ctype ├── .gitignore ├── Makefile.am ├── check-isalnum.c ├── check-isalpha.c ├── check-isascii.c ├── check-isblank.c ├── check-iscntrl.c ├── check-isdigit.c ├── check-isgraph.c ├── check-islower.c ├── check-isprint.c ├── check-ispunct.c ├── check-isspace.c ├── check-isupper.c ├── check-isxdigit.c ├── check-tolower.c └── check-toupper.c ├── errno ├── .gitignore ├── Makefile.am └── check-errno.c ├── fenv └── Makefile.am ├── float ├── .gitignore ├── Makefile.am └── check-macros.c ├── include └── Makefile.am ├── inttypes └── Makefile.am ├── locale └── Makefile.am ├── math └── Makefile.am ├── setjmp └── Makefile.am ├── signal └── Makefile.am ├── stdarg └── Makefile.am ├── stdio ├── .gitignore ├── Makefile.am ├── check-macros.c ├── check-puts.c ├── check-snprintf.c ├── check-sprintf.c ├── check-vsnprintf.c └── check-vsprintf.c ├── stdlib ├── .gitignore ├── Makefile.am ├── check-_Exit.c ├── check-abort.c ├── check-abs.c ├── check-exit.c ├── check-labs.c ├── check-llabs.c ├── check-macros.c └── check-quick_exit.c ├── string ├── .gitignore ├── Makefile.am ├── check-memchr.c ├── check-memcmp.c ├── check-memcpy.c ├── check-memmove.c ├── check-memset.c ├── check-strcmp.c ├── check-strlen.c ├── check-strncmp.c └── check-strnlen.c ├── threads └── Makefile.am ├── time └── Makefile.am ├── uchar └── Makefile.am └── unistd └── Makefile.am /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/AUTHORS -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/CREDITS -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/README.rst -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/TODO -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/UNLICENSE -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.0 2 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autoreconf --force --install 3 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/examples/exit42/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/examples/exit42/.gitignore -------------------------------------------------------------------------------- /doc/examples/exit42/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/examples/exit42/Makefile -------------------------------------------------------------------------------- /doc/examples/exit42/exit42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/examples/exit42/exit42.c -------------------------------------------------------------------------------- /doc/examples/hello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/examples/hello/.gitignore -------------------------------------------------------------------------------- /doc/examples/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/examples/hello/Makefile -------------------------------------------------------------------------------- /doc/examples/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/examples/hello/hello.c -------------------------------------------------------------------------------- /doc/manual/.build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/manual/.extensions/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /doc/manual/.gitignore: -------------------------------------------------------------------------------- 1 | .build/ 2 | -------------------------------------------------------------------------------- /doc/manual/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/manual/.static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/manual/.templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/Makefile -------------------------------------------------------------------------------- /doc/manual/assert/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/assert/index.rst -------------------------------------------------------------------------------- /doc/manual/complex/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/complex/index.rst -------------------------------------------------------------------------------- /doc/manual/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/conf.py -------------------------------------------------------------------------------- /doc/manual/contrib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/contrib.rst -------------------------------------------------------------------------------- /doc/manual/contrib/bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/contrib/bugs.rst -------------------------------------------------------------------------------- /doc/manual/contrib/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/contrib/documentation.rst -------------------------------------------------------------------------------- /doc/manual/contrib/donations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/contrib/donations.rst -------------------------------------------------------------------------------- /doc/manual/contrib/patches.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/contrib/patches.rst -------------------------------------------------------------------------------- /doc/manual/contrib/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/contrib/style.rst -------------------------------------------------------------------------------- /doc/manual/ctype/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/index.rst -------------------------------------------------------------------------------- /doc/manual/ctype/isalnum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/isalnum.rst -------------------------------------------------------------------------------- /doc/manual/ctype/isalpha.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/isalpha.rst -------------------------------------------------------------------------------- /doc/manual/ctype/isascii.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/isascii.rst -------------------------------------------------------------------------------- /doc/manual/ctype/isblank.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/isblank.rst -------------------------------------------------------------------------------- /doc/manual/ctype/iscntrl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/iscntrl.rst -------------------------------------------------------------------------------- /doc/manual/ctype/isdigit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/isdigit.rst -------------------------------------------------------------------------------- /doc/manual/ctype/isgraph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/isgraph.rst -------------------------------------------------------------------------------- /doc/manual/ctype/islower.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/islower.rst -------------------------------------------------------------------------------- /doc/manual/ctype/isprint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/isprint.rst -------------------------------------------------------------------------------- /doc/manual/ctype/ispunct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/ispunct.rst -------------------------------------------------------------------------------- /doc/manual/ctype/isspace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/isspace.rst -------------------------------------------------------------------------------- /doc/manual/ctype/isupper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/isupper.rst -------------------------------------------------------------------------------- /doc/manual/ctype/isxdigit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/isxdigit.rst -------------------------------------------------------------------------------- /doc/manual/ctype/tolower.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/tolower.rst -------------------------------------------------------------------------------- /doc/manual/ctype/toupper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/ctype/toupper.rst -------------------------------------------------------------------------------- /doc/manual/errno/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/errno/index.rst -------------------------------------------------------------------------------- /doc/manual/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/faq.rst -------------------------------------------------------------------------------- /doc/manual/fenv/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/fenv/index.rst -------------------------------------------------------------------------------- /doc/manual/float/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/float/index.rst -------------------------------------------------------------------------------- /doc/manual/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/glossary.rst -------------------------------------------------------------------------------- /doc/manual/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/index.rst -------------------------------------------------------------------------------- /doc/manual/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/install.rst -------------------------------------------------------------------------------- /doc/manual/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/intro.rst -------------------------------------------------------------------------------- /doc/manual/inttypes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/inttypes/index.rst -------------------------------------------------------------------------------- /doc/manual/iso646/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/iso646/index.rst -------------------------------------------------------------------------------- /doc/manual/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/license.rst -------------------------------------------------------------------------------- /doc/manual/limits/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/limits/index.rst -------------------------------------------------------------------------------- /doc/manual/locale/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/locale/index.rst -------------------------------------------------------------------------------- /doc/manual/math/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/math/index.rst -------------------------------------------------------------------------------- /doc/manual/notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/notes.rst -------------------------------------------------------------------------------- /doc/manual/schema/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/manual/setjmp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/setjmp/index.rst -------------------------------------------------------------------------------- /doc/manual/signal/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/signal/index.rst -------------------------------------------------------------------------------- /doc/manual/status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/status.rst -------------------------------------------------------------------------------- /doc/manual/stdalign/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdalign/index.rst -------------------------------------------------------------------------------- /doc/manual/stdarg/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdarg/index.rst -------------------------------------------------------------------------------- /doc/manual/stdatomic/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdatomic/index.rst -------------------------------------------------------------------------------- /doc/manual/stdbool/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdbool/index.rst -------------------------------------------------------------------------------- /doc/manual/stddef/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stddef/index.rst -------------------------------------------------------------------------------- /doc/manual/stdint/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdint/index.rst -------------------------------------------------------------------------------- /doc/manual/stdio/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdio/index.rst -------------------------------------------------------------------------------- /doc/manual/stdio/snprintf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdio/snprintf.rst -------------------------------------------------------------------------------- /doc/manual/stdio/sprintf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdio/sprintf.rst -------------------------------------------------------------------------------- /doc/manual/stdio/vsnprintf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdio/vsnprintf.rst -------------------------------------------------------------------------------- /doc/manual/stdio/vsprintf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdio/vsprintf.rst -------------------------------------------------------------------------------- /doc/manual/stdlib/_Exit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdlib/_Exit.rst -------------------------------------------------------------------------------- /doc/manual/stdlib/abort.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdlib/abort.rst -------------------------------------------------------------------------------- /doc/manual/stdlib/abs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdlib/abs.rst -------------------------------------------------------------------------------- /doc/manual/stdlib/exit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdlib/exit.rst -------------------------------------------------------------------------------- /doc/manual/stdlib/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdlib/index.rst -------------------------------------------------------------------------------- /doc/manual/stdlib/labs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdlib/labs.rst -------------------------------------------------------------------------------- /doc/manual/stdlib/llabs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdlib/llabs.rst -------------------------------------------------------------------------------- /doc/manual/stdlib/quick_exit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdlib/quick_exit.rst -------------------------------------------------------------------------------- /doc/manual/stdnoreturn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/stdnoreturn/index.rst -------------------------------------------------------------------------------- /doc/manual/string/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/string/index.rst -------------------------------------------------------------------------------- /doc/manual/string/memchr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/string/memchr.rst -------------------------------------------------------------------------------- /doc/manual/string/memcmp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/string/memcmp.rst -------------------------------------------------------------------------------- /doc/manual/string/memcpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/string/memcpy.rst -------------------------------------------------------------------------------- /doc/manual/string/memmove.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/string/memmove.rst -------------------------------------------------------------------------------- /doc/manual/string/memset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/string/memset.rst -------------------------------------------------------------------------------- /doc/manual/string/strcmp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/string/strcmp.rst -------------------------------------------------------------------------------- /doc/manual/string/strlen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/string/strlen.rst -------------------------------------------------------------------------------- /doc/manual/string/strncmp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/string/strncmp.rst -------------------------------------------------------------------------------- /doc/manual/string/strnlen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/string/strnlen.rst -------------------------------------------------------------------------------- /doc/manual/tgmath/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/tgmath/index.rst -------------------------------------------------------------------------------- /doc/manual/threads/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/threads/index.rst -------------------------------------------------------------------------------- /doc/manual/time/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/time/index.rst -------------------------------------------------------------------------------- /doc/manual/uchar/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/uchar/index.rst -------------------------------------------------------------------------------- /doc/manual/wchar/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/wchar/index.rst -------------------------------------------------------------------------------- /doc/manual/wctype/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/doc/manual/wctype/index.rst -------------------------------------------------------------------------------- /etc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/.gitignore -------------------------------------------------------------------------------- /etc/aclocal/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/aclocal/ab_check_builtin.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/aclocal/ab_check_builtin.m4 -------------------------------------------------------------------------------- /etc/aclocal/ax_compiler_vendor.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/aclocal/ax_compiler_vendor.m4 -------------------------------------------------------------------------------- /etc/buildbot/master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/master/.gitignore -------------------------------------------------------------------------------- /etc/buildbot/master/buildbot.tac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/master/buildbot.tac -------------------------------------------------------------------------------- /etc/buildbot/master/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/master/crontab -------------------------------------------------------------------------------- /etc/buildbot/master/master.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/master/master.cfg -------------------------------------------------------------------------------- /etc/buildbot/master/nginx/build.libc11.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/master/nginx/build.libc11.org -------------------------------------------------------------------------------- /etc/buildbot/master/public_html/bg_gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/master/public_html/bg_gradient.jpg -------------------------------------------------------------------------------- /etc/buildbot/master/public_html/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/master/public_html/default.css -------------------------------------------------------------------------------- /etc/buildbot/master/public_html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/master/public_html/favicon.ico -------------------------------------------------------------------------------- /etc/buildbot/master/public_html/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/master/public_html/robots.txt -------------------------------------------------------------------------------- /etc/buildbot/master/templates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/master/templates/README.txt -------------------------------------------------------------------------------- /etc/buildbot/slaves/.template/buildbot.tac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/.template/buildbot.tac -------------------------------------------------------------------------------- /etc/buildbot/slaves/freebsd-10.1-x86_64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/freebsd-10.1-x86_64/.gitignore -------------------------------------------------------------------------------- /etc/buildbot/slaves/freebsd-10.1-x86_64/buildbot.tac: -------------------------------------------------------------------------------- 1 | ../.template/buildbot.tac -------------------------------------------------------------------------------- /etc/buildbot/slaves/freebsd-10.1-x86_64/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/freebsd-10.1-x86_64/crontab -------------------------------------------------------------------------------- /etc/buildbot/slaves/freebsd-10.1-x86_64/info/access_uri: -------------------------------------------------------------------------------- 1 | ssh://freebsd.local 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/freebsd-10.1-x86_64/info/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/freebsd-10.1-x86_64/info/admin -------------------------------------------------------------------------------- /etc/buildbot/slaves/freebsd-10.1-x86_64/info/host: -------------------------------------------------------------------------------- 1 | FreeBSD 10.1-RELEASE (amd64) 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/netbsd-6.1.5-x86_64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/netbsd-6.1.5-x86_64/.gitignore -------------------------------------------------------------------------------- /etc/buildbot/slaves/netbsd-6.1.5-x86_64/buildbot.tac: -------------------------------------------------------------------------------- 1 | ../.template/buildbot.tac -------------------------------------------------------------------------------- /etc/buildbot/slaves/netbsd-6.1.5-x86_64/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/netbsd-6.1.5-x86_64/crontab -------------------------------------------------------------------------------- /etc/buildbot/slaves/netbsd-6.1.5-x86_64/info/access_uri: -------------------------------------------------------------------------------- 1 | ssh://netbsd.local 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/netbsd-6.1.5-x86_64/info/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/netbsd-6.1.5-x86_64/info/admin -------------------------------------------------------------------------------- /etc/buildbot/slaves/netbsd-6.1.5-x86_64/info/host: -------------------------------------------------------------------------------- 1 | NetBSD 6.1.5 (amd64) 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/openbsd-5.6-x86_64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/openbsd-5.6-x86_64/.gitignore -------------------------------------------------------------------------------- /etc/buildbot/slaves/openbsd-5.6-x86_64/buildbot.tac: -------------------------------------------------------------------------------- 1 | ../.template/buildbot.tac -------------------------------------------------------------------------------- /etc/buildbot/slaves/openbsd-5.6-x86_64/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/openbsd-5.6-x86_64/crontab -------------------------------------------------------------------------------- /etc/buildbot/slaves/openbsd-5.6-x86_64/info/access_uri: -------------------------------------------------------------------------------- 1 | ssh://openbsd.local 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/openbsd-5.6-x86_64/info/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/openbsd-5.6-x86_64/info/admin -------------------------------------------------------------------------------- /etc/buildbot/slaves/openbsd-5.6-x86_64/info/host: -------------------------------------------------------------------------------- 1 | OpenBSD 5.6 (amd64) 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/osx-10.7.5-x86_64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/osx-10.7.5-x86_64/.gitignore -------------------------------------------------------------------------------- /etc/buildbot/slaves/osx-10.7.5-x86_64/buildbot.tac: -------------------------------------------------------------------------------- 1 | ../.template/buildbot.tac -------------------------------------------------------------------------------- /etc/buildbot/slaves/osx-10.7.5-x86_64/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/osx-10.7.5-x86_64/crontab -------------------------------------------------------------------------------- /etc/buildbot/slaves/osx-10.7.5-x86_64/info/access_uri: -------------------------------------------------------------------------------- 1 | ssh://darwin.local 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/osx-10.7.5-x86_64/info/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/osx-10.7.5-x86_64/info/admin -------------------------------------------------------------------------------- /etc/buildbot/slaves/osx-10.7.5-x86_64/info/host: -------------------------------------------------------------------------------- 1 | Darwin 11.4.2 (x86_64) 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/solaris-11.2-x86_64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/solaris-11.2-x86_64/.gitignore -------------------------------------------------------------------------------- /etc/buildbot/slaves/solaris-11.2-x86_64/buildbot.tac: -------------------------------------------------------------------------------- 1 | ../.template/buildbot.tac -------------------------------------------------------------------------------- /etc/buildbot/slaves/solaris-11.2-x86_64/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/solaris-11.2-x86_64/crontab -------------------------------------------------------------------------------- /etc/buildbot/slaves/solaris-11.2-x86_64/info/access_uri: -------------------------------------------------------------------------------- 1 | ssh://solaris.local 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/solaris-11.2-x86_64/info/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/solaris-11.2-x86_64/info/admin -------------------------------------------------------------------------------- /etc/buildbot/slaves/solaris-11.2-x86_64/info/host: -------------------------------------------------------------------------------- 1 | SunOS 5.11 (i86pc) 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-armhf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/ubuntu-14.04-armhf/.gitignore -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-armhf/buildbot.tac: -------------------------------------------------------------------------------- 1 | ../.template/buildbot.tac -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-armhf/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/ubuntu-14.04-armhf/crontab -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-armhf/info/access_uri: -------------------------------------------------------------------------------- 1 | ssh://arm.local 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-armhf/info/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/ubuntu-14.04-armhf/info/admin -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-armhf/info/host: -------------------------------------------------------------------------------- 1 | Linux 3.17.0-119 (armv7l) 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-x86_64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/ubuntu-14.04-x86_64/.gitignore -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-x86_64/buildbot.tac: -------------------------------------------------------------------------------- 1 | ../.template/buildbot.tac -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-x86_64/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/ubuntu-14.04-x86_64/crontab -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-x86_64/info/access_uri: -------------------------------------------------------------------------------- 1 | ssh://ubuntu.local 2 | -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-x86_64/info/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/buildbot/slaves/ubuntu-14.04-x86_64/info/admin -------------------------------------------------------------------------------- /etc/buildbot/slaves/ubuntu-14.04-x86_64/info/host: -------------------------------------------------------------------------------- 1 | Linux 3.13.0-39-generic (x86_64) 2 | -------------------------------------------------------------------------------- /etc/coverity/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/coverity/model.c -------------------------------------------------------------------------------- /etc/doap.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/doap.rdf -------------------------------------------------------------------------------- /etc/rdf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/.gitignore -------------------------------------------------------------------------------- /etc/rdf/assert.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/assert.ttl -------------------------------------------------------------------------------- /etc/rdf/complex.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/ctype.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/ctype.ttl -------------------------------------------------------------------------------- /etc/rdf/errno.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/fenv.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/float.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/inttypes.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/iso646.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/limits.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/limits.ttl -------------------------------------------------------------------------------- /etc/rdf/locale.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/math.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/schema.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/schema.ttl -------------------------------------------------------------------------------- /etc/rdf/setjmp.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/signal.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/stdalign.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/stdalign.ttl -------------------------------------------------------------------------------- /etc/rdf/stdarg.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/stdarg.ttl -------------------------------------------------------------------------------- /etc/rdf/stdatomic.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/stdbool.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/stdbool.ttl -------------------------------------------------------------------------------- /etc/rdf/stddef.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/stddef.ttl -------------------------------------------------------------------------------- /etc/rdf/stdint.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/stdio.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/stdio.ttl -------------------------------------------------------------------------------- /etc/rdf/stdlib.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/stdlib.ttl -------------------------------------------------------------------------------- /etc/rdf/stdnoreturn.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/stdnoreturn.ttl -------------------------------------------------------------------------------- /etc/rdf/string.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/etc/rdf/string.ttl -------------------------------------------------------------------------------- /etc/rdf/tgmath.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/threads.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/time.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/uchar.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/wchar.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/rdf/wctype.ttl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/assert/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/complex/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ctype/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/Makefile.am -------------------------------------------------------------------------------- /src/ctype/isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/isalnum.c -------------------------------------------------------------------------------- /src/ctype/isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/isalpha.c -------------------------------------------------------------------------------- /src/ctype/isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/isascii.c -------------------------------------------------------------------------------- /src/ctype/isblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/isblank.c -------------------------------------------------------------------------------- /src/ctype/iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/iscntrl.c -------------------------------------------------------------------------------- /src/ctype/isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/isdigit.c -------------------------------------------------------------------------------- /src/ctype/isgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/isgraph.c -------------------------------------------------------------------------------- /src/ctype/islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/islower.c -------------------------------------------------------------------------------- /src/ctype/isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/isprint.c -------------------------------------------------------------------------------- /src/ctype/ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/ispunct.c -------------------------------------------------------------------------------- /src/ctype/isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/isspace.c -------------------------------------------------------------------------------- /src/ctype/isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/isupper.c -------------------------------------------------------------------------------- /src/ctype/isxdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/isxdigit.c -------------------------------------------------------------------------------- /src/ctype/tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/tolower.c -------------------------------------------------------------------------------- /src/ctype/toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/ctype/toupper.c -------------------------------------------------------------------------------- /src/errno/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/errno/Makefile.am -------------------------------------------------------------------------------- /src/errno/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/errno/errno.c -------------------------------------------------------------------------------- /src/fenv/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/Makefile.am -------------------------------------------------------------------------------- /src/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/assert.h -------------------------------------------------------------------------------- /src/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/ctype.h -------------------------------------------------------------------------------- /src/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/errno.h -------------------------------------------------------------------------------- /src/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/float.h -------------------------------------------------------------------------------- /src/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/inttypes.h -------------------------------------------------------------------------------- /src/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/iso646.h -------------------------------------------------------------------------------- /src/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/limits.h -------------------------------------------------------------------------------- /src/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/locale.h -------------------------------------------------------------------------------- /src/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/signal.h -------------------------------------------------------------------------------- /src/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/stdalign.h -------------------------------------------------------------------------------- /src/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/stdarg.h -------------------------------------------------------------------------------- /src/include/stdatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/stdatomic.h -------------------------------------------------------------------------------- /src/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/stdbool.h -------------------------------------------------------------------------------- /src/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/stddef.h -------------------------------------------------------------------------------- /src/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/stdint.h -------------------------------------------------------------------------------- /src/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/stdio.h -------------------------------------------------------------------------------- /src/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/stdlib.h -------------------------------------------------------------------------------- /src/include/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/stdnoreturn.h -------------------------------------------------------------------------------- /src/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/string.h -------------------------------------------------------------------------------- /src/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/include/unistd.h -------------------------------------------------------------------------------- /src/inttypes/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/locale/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/locale/Makefile.am -------------------------------------------------------------------------------- /src/locale/localeconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/locale/localeconv.c -------------------------------------------------------------------------------- /src/locale/setlocale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/locale/setlocale.c -------------------------------------------------------------------------------- /src/math/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/math/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/math/fabs.c -------------------------------------------------------------------------------- /src/math/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/math/fmod.c -------------------------------------------------------------------------------- /src/math/ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/math/ldexp.c -------------------------------------------------------------------------------- /src/math/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/math/pow.c -------------------------------------------------------------------------------- /src/setjmp/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/signal/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stdarg/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stdio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/Makefile.am -------------------------------------------------------------------------------- /src/stdio/clearerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/clearerr.c -------------------------------------------------------------------------------- /src/stdio/fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/fclose.c -------------------------------------------------------------------------------- /src/stdio/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/feof.c -------------------------------------------------------------------------------- /src/stdio/ferror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/ferror.c -------------------------------------------------------------------------------- /src/stdio/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/fflush.c -------------------------------------------------------------------------------- /src/stdio/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/fgetc.c -------------------------------------------------------------------------------- /src/stdio/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/fputc.c -------------------------------------------------------------------------------- /src/stdio/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/fputs.c -------------------------------------------------------------------------------- /src/stdio/getc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/getc.c -------------------------------------------------------------------------------- /src/stdio/getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/getchar.c -------------------------------------------------------------------------------- /src/stdio/putc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/putc.c -------------------------------------------------------------------------------- /src/stdio/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/putchar.c -------------------------------------------------------------------------------- /src/stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/puts.c -------------------------------------------------------------------------------- /src/stdio/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/snprintf.c -------------------------------------------------------------------------------- /src/stdio/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/sprintf.c -------------------------------------------------------------------------------- /src/stdio/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/vsnprintf.c -------------------------------------------------------------------------------- /src/stdio/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdio/vsprintf.c -------------------------------------------------------------------------------- /src/stdlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdlib/Makefile.am -------------------------------------------------------------------------------- /src/stdlib/_Exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdlib/_Exit.c -------------------------------------------------------------------------------- /src/stdlib/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdlib/abort.c -------------------------------------------------------------------------------- /src/stdlib/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdlib/abs.c -------------------------------------------------------------------------------- /src/stdlib/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdlib/exit.c -------------------------------------------------------------------------------- /src/stdlib/labs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdlib/labs.c -------------------------------------------------------------------------------- /src/stdlib/llabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdlib/llabs.c -------------------------------------------------------------------------------- /src/stdlib/quick_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/stdlib/quick_exit.c -------------------------------------------------------------------------------- /src/string/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/Makefile.am -------------------------------------------------------------------------------- /src/string/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/memchr.c -------------------------------------------------------------------------------- /src/string/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/memcmp.c -------------------------------------------------------------------------------- /src/string/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/memcpy.c -------------------------------------------------------------------------------- /src/string/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/memmove.c -------------------------------------------------------------------------------- /src/string/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/memset.c -------------------------------------------------------------------------------- /src/string/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strcat.c -------------------------------------------------------------------------------- /src/string/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strchr.c -------------------------------------------------------------------------------- /src/string/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strcmp.c -------------------------------------------------------------------------------- /src/string/strcoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strcoll.c -------------------------------------------------------------------------------- /src/string/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strcpy.c -------------------------------------------------------------------------------- /src/string/strcspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strcspn.c -------------------------------------------------------------------------------- /src/string/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strerror.c -------------------------------------------------------------------------------- /src/string/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strlen.c -------------------------------------------------------------------------------- /src/string/strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strncat.c -------------------------------------------------------------------------------- /src/string/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strncmp.c -------------------------------------------------------------------------------- /src/string/strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strncpy.c -------------------------------------------------------------------------------- /src/string/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strnlen.c -------------------------------------------------------------------------------- /src/string/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strpbrk.c -------------------------------------------------------------------------------- /src/string/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strrchr.c -------------------------------------------------------------------------------- /src/string/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strspn.c -------------------------------------------------------------------------------- /src/string/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strstr.c -------------------------------------------------------------------------------- /src/string/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strtok.c -------------------------------------------------------------------------------- /src/string/strxfrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/src/string/strxfrm.c -------------------------------------------------------------------------------- /src/threads/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/time/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uchar/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/unistd/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/.gitignore -------------------------------------------------------------------------------- /sys/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/Makefile.am -------------------------------------------------------------------------------- /sys/posix/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/Makefile.am -------------------------------------------------------------------------------- /sys/posix/__sysio_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/__sysio_close.c -------------------------------------------------------------------------------- /sys/posix/__sysio_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/__sysio_errno.c -------------------------------------------------------------------------------- /sys/posix/__sysio_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/__sysio_write.c -------------------------------------------------------------------------------- /sys/posix/bsd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/bsd/Makefile.am -------------------------------------------------------------------------------- /sys/posix/bsd/x86_64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/bsd/x86_64/Makefile.am -------------------------------------------------------------------------------- /sys/posix/bsd/x86_64/__sys_close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/bsd/x86_64/__sys_close.S -------------------------------------------------------------------------------- /sys/posix/bsd/x86_64/__sys_exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/bsd/x86_64/__sys_exit.S -------------------------------------------------------------------------------- /sys/posix/bsd/x86_64/__sys_write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/bsd/x86_64/__sys_write.S -------------------------------------------------------------------------------- /sys/posix/bsd/x86_64/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/bsd/x86_64/crt0.S -------------------------------------------------------------------------------- /sys/posix/darwin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/darwin/Makefile.am -------------------------------------------------------------------------------- /sys/posix/darwin/x86_64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/darwin/x86_64/Makefile.am -------------------------------------------------------------------------------- /sys/posix/darwin/x86_64/__sys_close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/darwin/x86_64/__sys_close.S -------------------------------------------------------------------------------- /sys/posix/darwin/x86_64/__sys_exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/darwin/x86_64/__sys_exit.S -------------------------------------------------------------------------------- /sys/posix/darwin/x86_64/__sys_write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/darwin/x86_64/__sys_write.S -------------------------------------------------------------------------------- /sys/posix/darwin/x86_64/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/darwin/x86_64/crt0.S -------------------------------------------------------------------------------- /sys/posix/linux/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/Makefile.am -------------------------------------------------------------------------------- /sys/posix/linux/arm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/arm/Makefile.am -------------------------------------------------------------------------------- /sys/posix/linux/arm/__sys_close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/arm/__sys_close.S -------------------------------------------------------------------------------- /sys/posix/linux/arm/__sys_exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/arm/__sys_exit.S -------------------------------------------------------------------------------- /sys/posix/linux/arm/__sys_write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/arm/__sys_write.S -------------------------------------------------------------------------------- /sys/posix/linux/arm/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/arm/crt0.S -------------------------------------------------------------------------------- /sys/posix/linux/x86/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/x86/Makefile.am -------------------------------------------------------------------------------- /sys/posix/linux/x86/__sys_close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/x86/__sys_close.S -------------------------------------------------------------------------------- /sys/posix/linux/x86/__sys_exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/x86/__sys_exit.S -------------------------------------------------------------------------------- /sys/posix/linux/x86/__sys_write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/x86/__sys_write.S -------------------------------------------------------------------------------- /sys/posix/linux/x86/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/x86/crt0.S -------------------------------------------------------------------------------- /sys/posix/linux/x86_64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/x86_64/Makefile.am -------------------------------------------------------------------------------- /sys/posix/linux/x86_64/__sys_close.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/x86_64/__sys_close.S -------------------------------------------------------------------------------- /sys/posix/linux/x86_64/__sys_exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/x86_64/__sys_exit.S -------------------------------------------------------------------------------- /sys/posix/linux/x86_64/__sys_write.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/x86_64/__sys_write.S -------------------------------------------------------------------------------- /sys/posix/linux/x86_64/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/linux/x86_64/crt0.S -------------------------------------------------------------------------------- /sys/posix/none/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/none/Makefile.am -------------------------------------------------------------------------------- /sys/posix/none/__sys_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/none/__sys_close.c -------------------------------------------------------------------------------- /sys/posix/none/__sys_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/none/__sys_exit.c -------------------------------------------------------------------------------- /sys/posix/none/__sys_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/none/__sys_write.c -------------------------------------------------------------------------------- /sys/posix/none/arm: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /sys/posix/none/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/none/crt0.c -------------------------------------------------------------------------------- /sys/posix/none/x86: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /sys/posix/none/x86_64: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /sys/posix/stderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/stderr.c -------------------------------------------------------------------------------- /sys/posix/stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/stdin.c -------------------------------------------------------------------------------- /sys/posix/stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/stdout.c -------------------------------------------------------------------------------- /sys/posix/sysio_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/posix/sysio_file.h -------------------------------------------------------------------------------- /sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/syscall.h -------------------------------------------------------------------------------- /sys/sysio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/sysio.h -------------------------------------------------------------------------------- /sys/windows/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/sys/windows/Makefile.am -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/assert/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/complex/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ctype/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/.gitignore -------------------------------------------------------------------------------- /test/ctype/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/Makefile.am -------------------------------------------------------------------------------- /test/ctype/check-isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-isalnum.c -------------------------------------------------------------------------------- /test/ctype/check-isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-isalpha.c -------------------------------------------------------------------------------- /test/ctype/check-isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-isascii.c -------------------------------------------------------------------------------- /test/ctype/check-isblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-isblank.c -------------------------------------------------------------------------------- /test/ctype/check-iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-iscntrl.c -------------------------------------------------------------------------------- /test/ctype/check-isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-isdigit.c -------------------------------------------------------------------------------- /test/ctype/check-isgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-isgraph.c -------------------------------------------------------------------------------- /test/ctype/check-islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-islower.c -------------------------------------------------------------------------------- /test/ctype/check-isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-isprint.c -------------------------------------------------------------------------------- /test/ctype/check-ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-ispunct.c -------------------------------------------------------------------------------- /test/ctype/check-isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-isspace.c -------------------------------------------------------------------------------- /test/ctype/check-isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-isupper.c -------------------------------------------------------------------------------- /test/ctype/check-isxdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-isxdigit.c -------------------------------------------------------------------------------- /test/ctype/check-tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-tolower.c -------------------------------------------------------------------------------- /test/ctype/check-toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/ctype/check-toupper.c -------------------------------------------------------------------------------- /test/errno/.gitignore: -------------------------------------------------------------------------------- 1 | check-errno 2 | -------------------------------------------------------------------------------- /test/errno/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/errno/Makefile.am -------------------------------------------------------------------------------- /test/errno/check-errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/errno/check-errno.c -------------------------------------------------------------------------------- /test/fenv/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/float/.gitignore: -------------------------------------------------------------------------------- 1 | check-macros 2 | -------------------------------------------------------------------------------- /test/float/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/float/Makefile.am -------------------------------------------------------------------------------- /test/float/check-macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/float/check-macros.c -------------------------------------------------------------------------------- /test/include/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/inttypes/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/locale/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/math/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/setjmp/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/signal/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stdarg/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/stdio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdio/.gitignore -------------------------------------------------------------------------------- /test/stdio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdio/Makefile.am -------------------------------------------------------------------------------- /test/stdio/check-macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdio/check-macros.c -------------------------------------------------------------------------------- /test/stdio/check-puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdio/check-puts.c -------------------------------------------------------------------------------- /test/stdio/check-snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdio/check-snprintf.c -------------------------------------------------------------------------------- /test/stdio/check-sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdio/check-sprintf.c -------------------------------------------------------------------------------- /test/stdio/check-vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdio/check-vsnprintf.c -------------------------------------------------------------------------------- /test/stdio/check-vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdio/check-vsprintf.c -------------------------------------------------------------------------------- /test/stdlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdlib/.gitignore -------------------------------------------------------------------------------- /test/stdlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdlib/Makefile.am -------------------------------------------------------------------------------- /test/stdlib/check-_Exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdlib/check-_Exit.c -------------------------------------------------------------------------------- /test/stdlib/check-abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdlib/check-abort.c -------------------------------------------------------------------------------- /test/stdlib/check-abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdlib/check-abs.c -------------------------------------------------------------------------------- /test/stdlib/check-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdlib/check-exit.c -------------------------------------------------------------------------------- /test/stdlib/check-labs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdlib/check-labs.c -------------------------------------------------------------------------------- /test/stdlib/check-llabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdlib/check-llabs.c -------------------------------------------------------------------------------- /test/stdlib/check-macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdlib/check-macros.c -------------------------------------------------------------------------------- /test/stdlib/check-quick_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/stdlib/check-quick_exit.c -------------------------------------------------------------------------------- /test/string/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/.gitignore -------------------------------------------------------------------------------- /test/string/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/Makefile.am -------------------------------------------------------------------------------- /test/string/check-memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/check-memchr.c -------------------------------------------------------------------------------- /test/string/check-memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/check-memcmp.c -------------------------------------------------------------------------------- /test/string/check-memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/check-memcpy.c -------------------------------------------------------------------------------- /test/string/check-memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/check-memmove.c -------------------------------------------------------------------------------- /test/string/check-memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/check-memset.c -------------------------------------------------------------------------------- /test/string/check-strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/check-strcmp.c -------------------------------------------------------------------------------- /test/string/check-strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/check-strlen.c -------------------------------------------------------------------------------- /test/string/check-strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/check-strncmp.c -------------------------------------------------------------------------------- /test/string/check-strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryc/libc11/HEAD/test/string/check-strnlen.c -------------------------------------------------------------------------------- /test/threads/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/time/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/uchar/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unistd/Makefile.am: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------