├── .gitignore ├── Makefile ├── README.md ├── arch-arm.h ├── arch-arm64.h ├── arch-loongarch.h ├── arch-m68k.h ├── arch-mips.h ├── arch-powerpc.h ├── arch-riscv.h ├── arch-s390.h ├── arch-sh.h ├── arch-sparc.h ├── arch-x86.h ├── arch.h ├── compiler.h ├── crt.h ├── ctype.h ├── dirent.h ├── elf.h ├── errno.h ├── fcntl.h ├── getopt.h ├── hello.c ├── limits.h ├── math.h ├── nolibc.h ├── poll.h ├── sched.h ├── signal.h ├── stackprotector.h ├── std.h ├── stdarg.h ├── stdbool.h ├── stddef.h ├── stdint.h ├── stdio.h ├── stdlib.h ├── string.h ├── sys.h ├── sys ├── auxv.h ├── ioctl.h ├── mman.h ├── mount.h ├── prctl.h ├── random.h ├── reboot.h ├── resource.h ├── stat.h ├── syscall.h ├── sysmacros.h ├── time.h ├── timerfd.h ├── types.h ├── utsname.h └── wait.h ├── time.h ├── types.h └── unistd.h /.gitignore: -------------------------------------------------------------------------------- 1 | sysroot 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/README.md -------------------------------------------------------------------------------- /arch-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-arm.h -------------------------------------------------------------------------------- /arch-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-arm64.h -------------------------------------------------------------------------------- /arch-loongarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-loongarch.h -------------------------------------------------------------------------------- /arch-m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-m68k.h -------------------------------------------------------------------------------- /arch-mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-mips.h -------------------------------------------------------------------------------- /arch-powerpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-powerpc.h -------------------------------------------------------------------------------- /arch-riscv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-riscv.h -------------------------------------------------------------------------------- /arch-s390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-s390.h -------------------------------------------------------------------------------- /arch-sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-sh.h -------------------------------------------------------------------------------- /arch-sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-sparc.h -------------------------------------------------------------------------------- /arch-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch-x86.h -------------------------------------------------------------------------------- /arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/arch.h -------------------------------------------------------------------------------- /compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/compiler.h -------------------------------------------------------------------------------- /crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/crt.h -------------------------------------------------------------------------------- /ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/ctype.h -------------------------------------------------------------------------------- /dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/dirent.h -------------------------------------------------------------------------------- /elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/elf.h -------------------------------------------------------------------------------- /errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/errno.h -------------------------------------------------------------------------------- /fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/fcntl.h -------------------------------------------------------------------------------- /getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/getopt.h -------------------------------------------------------------------------------- /hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/hello.c -------------------------------------------------------------------------------- /limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/limits.h -------------------------------------------------------------------------------- /math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/math.h -------------------------------------------------------------------------------- /nolibc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/nolibc.h -------------------------------------------------------------------------------- /poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/poll.h -------------------------------------------------------------------------------- /sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sched.h -------------------------------------------------------------------------------- /signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/signal.h -------------------------------------------------------------------------------- /stackprotector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/stackprotector.h -------------------------------------------------------------------------------- /std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/std.h -------------------------------------------------------------------------------- /stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/stdarg.h -------------------------------------------------------------------------------- /stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/stdbool.h -------------------------------------------------------------------------------- /stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/stddef.h -------------------------------------------------------------------------------- /stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/stdint.h -------------------------------------------------------------------------------- /stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/stdio.h -------------------------------------------------------------------------------- /stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/stdlib.h -------------------------------------------------------------------------------- /string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/string.h -------------------------------------------------------------------------------- /sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys.h -------------------------------------------------------------------------------- /sys/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/auxv.h -------------------------------------------------------------------------------- /sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/ioctl.h -------------------------------------------------------------------------------- /sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/mman.h -------------------------------------------------------------------------------- /sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/mount.h -------------------------------------------------------------------------------- /sys/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/prctl.h -------------------------------------------------------------------------------- /sys/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/random.h -------------------------------------------------------------------------------- /sys/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/reboot.h -------------------------------------------------------------------------------- /sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/resource.h -------------------------------------------------------------------------------- /sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/stat.h -------------------------------------------------------------------------------- /sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/syscall.h -------------------------------------------------------------------------------- /sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/sysmacros.h -------------------------------------------------------------------------------- /sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/time.h -------------------------------------------------------------------------------- /sys/timerfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/timerfd.h -------------------------------------------------------------------------------- /sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/types.h -------------------------------------------------------------------------------- /sys/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/utsname.h -------------------------------------------------------------------------------- /sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/sys/wait.h -------------------------------------------------------------------------------- /time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/time.h -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/types.h -------------------------------------------------------------------------------- /unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtarreau/nolibc/HEAD/unistd.h --------------------------------------------------------------------------------